[dpdk-dev] [PATCH] net/nfp: fix Vlan offload flags check

Alejandro Lucero alejandro.lucero at netronome.com
Fri Jan 13 12:36:57 CET 2017


Acked.

Thanks!

On Thu, Jan 12, 2017 at 1:04 PM, Olivier Matz <olivier.matz at 6wind.com>
wrote:

> Fix typo when checking that no Vlan offload flags are passed at port
> initialization.
>
> By the way, also fix a typo in the log.
>
> Fixes: d4a27a3b092a ("nfp: add basic features")
>
> Signed-off-by: Olivier Matz <olivier.matz at 6wind.com>
> ---
>  drivers/net/nfp/nfp_net.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/nfp/nfp_net.c b/drivers/net/nfp/nfp_net.c
> index 65ba09f..ed3c9b8 100644
> --- a/drivers/net/nfp/nfp_net.c
> +++ b/drivers/net/nfp/nfp_net.c
> @@ -2174,8 +2174,8 @@ nfp_net_vlan_offload_set(struct rte_eth_dev *dev,
> int mask)
>         new_ctrl = 0;
>
>         if ((mask & ETH_VLAN_FILTER_OFFLOAD) ||
> -           (mask & ETH_VLAN_FILTER_OFFLOAD))
> -               RTE_LOG(INFO, PMD, "Not support for
> ETH_VLAN_FILTER_OFFLOAD or"
> +           (mask & ETH_VLAN_FILTER_EXTEND))
> +               RTE_LOG(INFO, PMD, "No support for ETH_VLAN_FILTER_OFFLOAD
> or"
>                         " ETH_VLAN_FILTER_EXTEND");
>
>         /* Enable vlan strip if it is not configured yet */
> --
> 2.8.1
>
>


More information about the dev mailing list