On 12/21/2016 6:34 AM, Wenzhuo Lu wrote: > modify set_vf_rx_vlan function to handle the i40e PMD. > > Signed-off-by: Bernard Iremonger <[email protected]> > ---
<...>
> +
> + switch (ret) {
> + case 0:
> + break;
> + case -EINVAL:
> + printf("invalid vlan_id %d or vf_mask %lu\n",
To fix 32bit compilation:
printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
<...>

