Re: [dpdk-dev] [PATCH v3] net/mlx5: fix wrong segmented packet in Rx

2021-03-04 Thread Raslan Darawsheh
ect: [dpdk-dev] [PATCH v3] net/mlx5: fix wrong segmented packet in Rx > > The issue occurred if mbuf starvation happened > in the middle of segmented packet reception. > In such a situation, after release the segments of > packet being received, code did not advance the > cons

Re: [dpdk-dev] [PATCH v3] net/mlx5: fix wrong segmented packet in Rx

2021-03-02 Thread Slava Ovsiienko
> -Original Message- > From: Jiawei Zhu <17826875...@163.com> > Sent: Monday, March 1, 2021 19:20 > To: dev@dpdk.org > Cc: zhujiawe...@huawei.com; Matan Azrad ; Shahaf > Shuler ; Slava Ovsiienko ; > Jiawei Zhu <17826875...@163.com>; sta...@dpdk.org > Subject: [PATCH v3] net/mlx5: fix wrong

[dpdk-dev] [PATCH v3] net/mlx5: fix wrong segmented packet in Rx

2021-03-02 Thread Jiawei Zhu
The issue occurred if mbuf starvation happened in the middle of segmented packet reception. In such a situation, after release the segments of packet being received, code did not advance the consumer index to the next stride. This caused the receiving of the wrong segmented packet data. The possib