[v1] net/i40e: fix parse ptype issue for NEON vector

Message ID 20210310024029.20772-1-feifei.wang2@arm.com (mailing list archive)
State Accepted, archived
Delegated to: Qi Zhang
Headers
Series [v1] net/i40e: fix parse ptype issue for NEON vector |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/travis-robot success travis build: passed
ci/github-robot success github build: passed
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-abi-testing success Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-mellanox-Functional success Functional Testing PASS
ci/iol-testing success Testing PASS
ci/intel-Testing success Testing PASS

Commit Message

Feifei Wang March 10, 2021, 2:40 a.m. UTC
  In i40e NEON vector rx path, the packet descs processing is incorrect.
This caused wrong packet type been filled in mbuf.

To fix this, when shifting the pktlen field to be 16-bit aligned, it
only needs to process the high 16bit of the packet descs instead of
the high 32bit.

Test Results:
Architecture: arm64
NIC: XL710
Driver: i40e
Package: Ether()/IP()/

Without this patch:
desc_to_ptype_v: ptype = 7 (error)

With this patch:
desc_to_ptype_v: ptype = 23 (correct)

Fixes: ae0eb310f253 ("net/i40e: implement vector PMD for ARM")
Cc: stable@dpdk.org

Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
---
 drivers/net/i40e/i40e_rxtx_vec_neon.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)
  

Comments

Kathleen Capella March 10, 2021, 7:50 p.m. UTC | #1
Tested-by: Kathleen Capella <kathleen.capella@arm.com>

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Feifei Wang
> Sent: Tuesday, March 9, 2021 9:40 PM
> To: jerinj@marvell.com; Ruifeng Wang <Ruifeng.Wang@arm.com>; Beilei Xing
> <beilei.xing@intel.com>; Jeff Guo <jia.guo@intel.com>; Bruce Richardson
> <bruce.richardson@intel.com>; Jianbo Liu <jianbo.liu@linaro.org>
> Cc: dev@dpdk.org; nd <nd@arm.com>; Feifei Wang <Feifei.Wang2@arm.com>;
> stable@dpdk.org
> Subject: [dpdk-dev] [PATCH v1] net/i40e: fix parse ptype issue for NEON vector
> 
> In i40e NEON vector rx path, the packet descs processing is incorrect.
> This caused wrong packet type been filled in mbuf.
> 
> To fix this, when shifting the pktlen field to be 16-bit aligned, it only needs to
> process the high 16bit of the packet descs instead of the high 32bit.
> 
> Test Results:
> Architecture: arm64
> NIC: XL710
> Driver: i40e
> Package: Ether()/IP()/
> 
> Without this patch:
> desc_to_ptype_v: ptype = 7 (error)
> 
> With this patch:
> desc_to_ptype_v: ptype = 23 (correct)
> 
> Fixes: ae0eb310f253 ("net/i40e: implement vector PMD for ARM")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> ---
>  drivers/net/i40e/i40e_rxtx_vec_neon.c | 20 ++++++++++++++++----
>  1 file changed, 16 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/i40e/i40e_rxtx_vec_neon.c
> b/drivers/net/i40e/i40e_rxtx_vec_neon.c
> index d81269624..ada82a14d 100644
> --- a/drivers/net/i40e/i40e_rxtx_vec_neon.c
> +++ b/drivers/net/i40e/i40e_rxtx_vec_neon.c
> @@ -310,10 +310,16 @@ _recv_raw_pkts_vec(struct i40e_rx_queue
> *__rte_restrict rxq,
>  		/* pkt 3,4 shift the pktlen field to be 16-bit aligned*/
>  		uint32x4_t len3 = vshlq_u32(vreinterpretq_u32_u64(descs[3]),
>  					    len_shl);
> -		descs[3] = vreinterpretq_u64_u32(len3);
> +		descs[3] = vreinterpretq_u64_u16(vsetq_lane_u16
> +				(vgetq_lane_u16(vreinterpretq_u16_u32(len3),
> 7),
> +				 vreinterpretq_u16_u64(descs[3]),
> +				 7));
>  		uint32x4_t len2 = vshlq_u32(vreinterpretq_u32_u64(descs[2]),
>  					    len_shl);
> -		descs[2] = vreinterpretq_u64_u32(len2);
> +		descs[2] = vreinterpretq_u64_u16(vsetq_lane_u16
> +				(vgetq_lane_u16(vreinterpretq_u16_u32(len2),
> 7),
> +				 vreinterpretq_u16_u64(descs[2]),
> +				 7));
> 
>  		/* D.1 pkt 3,4 convert format from desc to pktmbuf */
>  		pkt_mb4 = vqtbl1q_u8(vreinterpretq_u8_u64(descs[3]),
> shuf_msk); @@ -341,10 +347,16 @@ _recv_raw_pkts_vec(struct i40e_rx_queue
> *__rte_restrict rxq,
>  		/* pkt 1,2 shift the pktlen field to be 16-bit aligned*/
>  		uint32x4_t len1 = vshlq_u32(vreinterpretq_u32_u64(descs[1]),
>  					    len_shl);
> -		descs[1] = vreinterpretq_u64_u32(len1);
> +		descs[1] = vreinterpretq_u64_u16(vsetq_lane_u16
> +				(vgetq_lane_u16(vreinterpretq_u16_u32(len1),
> 7),
> +				 vreinterpretq_u16_u64(descs[1]),
> +				 7));
>  		uint32x4_t len0 = vshlq_u32(vreinterpretq_u32_u64(descs[0]),
>  					    len_shl);
> -		descs[0] = vreinterpretq_u64_u32(len0);
> +		descs[0] = vreinterpretq_u64_u16(vsetq_lane_u16
> +				(vgetq_lane_u16(vreinterpretq_u16_u32(len0),
> 7),
> +				 vreinterpretq_u16_u64(descs[0]),
> +				 7));
> 
>  		/* D.1 pkt 1,2 convert format from desc to pktmbuf */
>  		pkt_mb2 = vqtbl1q_u8(vreinterpretq_u8_u64(descs[1]),
> shuf_msk);
> --
> 2.25.1
  
Qi Zhang March 25, 2021, 1:59 a.m. UTC | #2
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Kathleen Capella
> Sent: Thursday, March 11, 2021 3:51 AM
> To: Feifei Wang <Feifei.Wang2@arm.com>; jerinj@marvell.com; Ruifeng
> Wang <Ruifeng.Wang@arm.com>; Xing, Beilei <beilei.xing@intel.com>; Guo,
> Jia <jia.guo@intel.com>; Richardson, Bruce <bruce.richardson@intel.com>;
> Jianbo Liu <jianbo.liu@linaro.org>
> Cc: dev@dpdk.org; nd <nd@arm.com>; Feifei Wang
> <Feifei.Wang2@arm.com>; stable@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH v1] net/i40e: fix parse ptype issue for NEON
> vector
> 
> Tested-by: Kathleen Capella <kathleen.capella@arm.com>
> 
> > -----Original Message-----
> > From: dev <dev-bounces@dpdk.org> On Behalf Of Feifei Wang
> > Sent: Tuesday, March 9, 2021 9:40 PM
> > To: jerinj@marvell.com; Ruifeng Wang <Ruifeng.Wang@arm.com>; Beilei
> > Xing <beilei.xing@intel.com>; Jeff Guo <jia.guo@intel.com>; Bruce
> > Richardson <bruce.richardson@intel.com>; Jianbo Liu
> > <jianbo.liu@linaro.org>
> > Cc: dev@dpdk.org; nd <nd@arm.com>; Feifei Wang
> <Feifei.Wang2@arm.com>;
> > stable@dpdk.org
> > Subject: [dpdk-dev] [PATCH v1] net/i40e: fix parse ptype issue for
> > NEON vector
> >
> > In i40e NEON vector rx path, the packet descs processing is incorrect.
> > This caused wrong packet type been filled in mbuf.
> >
> > To fix this, when shifting the pktlen field to be 16-bit aligned, it
> > only needs to process the high 16bit of the packet descs instead of the high
> 32bit.
> >
> > Test Results:
> > Architecture: arm64
> > NIC: XL710
> > Driver: i40e
> > Package: Ether()/IP()/
> >
> > Without this patch:
> > desc_to_ptype_v: ptype = 7 (error)
> >
> > With this patch:
> > desc_to_ptype_v: ptype = 23 (correct)
> >
> > Fixes: ae0eb310f253 ("net/i40e: implement vector PMD for ARM")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
> > Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>

Applied to dpdk-next-net-intel.

Thanks
Qi
  

Patch

diff --git a/drivers/net/i40e/i40e_rxtx_vec_neon.c b/drivers/net/i40e/i40e_rxtx_vec_neon.c
index d81269624..ada82a14d 100644
--- a/drivers/net/i40e/i40e_rxtx_vec_neon.c
+++ b/drivers/net/i40e/i40e_rxtx_vec_neon.c
@@ -310,10 +310,16 @@  _recv_raw_pkts_vec(struct i40e_rx_queue *__rte_restrict rxq,
 		/* pkt 3,4 shift the pktlen field to be 16-bit aligned*/
 		uint32x4_t len3 = vshlq_u32(vreinterpretq_u32_u64(descs[3]),
 					    len_shl);
-		descs[3] = vreinterpretq_u64_u32(len3);
+		descs[3] = vreinterpretq_u64_u16(vsetq_lane_u16
+				(vgetq_lane_u16(vreinterpretq_u16_u32(len3), 7),
+				 vreinterpretq_u16_u64(descs[3]),
+				 7));
 		uint32x4_t len2 = vshlq_u32(vreinterpretq_u32_u64(descs[2]),
 					    len_shl);
-		descs[2] = vreinterpretq_u64_u32(len2);
+		descs[2] = vreinterpretq_u64_u16(vsetq_lane_u16
+				(vgetq_lane_u16(vreinterpretq_u16_u32(len2), 7),
+				 vreinterpretq_u16_u64(descs[2]),
+				 7));
 
 		/* D.1 pkt 3,4 convert format from desc to pktmbuf */
 		pkt_mb4 = vqtbl1q_u8(vreinterpretq_u8_u64(descs[3]), shuf_msk);
@@ -341,10 +347,16 @@  _recv_raw_pkts_vec(struct i40e_rx_queue *__rte_restrict rxq,
 		/* pkt 1,2 shift the pktlen field to be 16-bit aligned*/
 		uint32x4_t len1 = vshlq_u32(vreinterpretq_u32_u64(descs[1]),
 					    len_shl);
-		descs[1] = vreinterpretq_u64_u32(len1);
+		descs[1] = vreinterpretq_u64_u16(vsetq_lane_u16
+				(vgetq_lane_u16(vreinterpretq_u16_u32(len1), 7),
+				 vreinterpretq_u16_u64(descs[1]),
+				 7));
 		uint32x4_t len0 = vshlq_u32(vreinterpretq_u32_u64(descs[0]),
 					    len_shl);
-		descs[0] = vreinterpretq_u64_u32(len0);
+		descs[0] = vreinterpretq_u64_u16(vsetq_lane_u16
+				(vgetq_lane_u16(vreinterpretq_u16_u32(len0), 7),
+				 vreinterpretq_u16_u64(descs[0]),
+				 7));
 
 		/* D.1 pkt 1,2 convert format from desc to pktmbuf */
 		pkt_mb2 = vqtbl1q_u8(vreinterpretq_u8_u64(descs[1]), shuf_msk);