Re: [dpdk-dev] [PATCH v2] net/bnxt: fix VLAN strip flags in sse mode

2020-01-22 Thread Ajit Khaparde
On Wed, Jan 22, 2020 at 3:18 PM Ajit Khaparde wrote: > From: Stephen Hemminger > > When the VLAN is stripped from the packet on receive the > driver must set the PKT_RX_VLAN_STRIPPED flag in the mbuf. > This is done correctly for normal receive in the bnxt driver > but was not being handled corr

[dpdk-dev] [PATCH v2] net/bnxt: fix VLAN strip flags in sse mode

2020-01-22 Thread Ajit Khaparde
From: Stephen Hemminger When the VLAN is stripped from the packet on receive the driver must set the PKT_RX_VLAN_STRIPPED flag in the mbuf. This is done correctly for normal receive in the bnxt driver but was not being handled correctly in the new SSE code. Fixes: bc4a000f2f53 ("net/bnxt: implem