[dpdk-dev] [PATCH] net/mlx5: fix VLAN stripping indication

Nélio Laranjeiro nelio.laranjeiro at 6wind.com
Mon Feb 20 16:59:34 CET 2017


On Sun, Feb 19, 2017 at 03:34:45PM +0200, Shahaf Shuler wrote:
> The indication on vlan stripping was taken from the wrong location in the
> completion entry.
> 
> Fixes: 9964b965ad69 ("net/mlx5: re-add Rx scatter support")
> CC: stable at dpdk.org
> 
> Signed-off-by: Shahaf Shuler <shahafs at mellanox.com>
> ---
>  drivers/net/mlx5/mlx5_rxtx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/mlx5/mlx5_rxtx.c b/drivers/net/mlx5/mlx5_rxtx.c
> index 2703765..805aa5a 100644
> --- a/drivers/net/mlx5/mlx5_rxtx.c
> +++ b/drivers/net/mlx5/mlx5_rxtx.c
> @@ -1447,7 +1447,7 @@
>  					pkt->ol_flags |=
>  						rxq_cq_to_ol_flags(rxq, cqe);
>  				}
> -				if (cqe->hdr_type_etc &
> +				if (ntohs(cqe->hdr_type_etc) &
>  				    MLX5_CQE_VLAN_STRIPPED) {
>  					pkt->ol_flags |= PKT_RX_VLAN_PKT |
>  						PKT_RX_VLAN_STRIPPED;
> -- 
> 1.8.3.1
> 

Acked-by: Nelio Laranjeiro <nelio.laranjeiro at 6wind.com>

-- 
Nélio Laranjeiro
6WIND


More information about the dev mailing list