Re: [PATCH 1/5] net/hns3: fix incorrect index to look up table in NEON Rx

2023-07-11 Thread Ferruh Yigit
On 7/11/2023 11:24 AM, Dongdong Liu wrote: > From: Huisong Li > > In hns3_recv_burst_vec(), the index to get packet length and data > size are reversed. Fortunately, this doesn't affect functionality > because the NEON Rx only supports single BD in which the packet > length is equal to the date s

[PATCH 1/5] net/hns3: fix incorrect index to look up table in NEON Rx

2023-07-11 Thread Dongdong Liu
From: Huisong Li In hns3_recv_burst_vec(), the index to get packet length and data size are reversed. Fortunately, this doesn't affect functionality because the NEON Rx only supports single BD in which the packet length is equal to the date size. Now this patch fixes it to get back to the truth.