> -----Original Message----- > From: Mingjin Ye <mingjinx...@intel.com> > Sent: Friday, November 4, 2022 1:21 AM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Zhou, YidingX <yidingx.z...@intel.com>; Ye, MingjinX > <mingjinx...@intel.com>; Yang, Qiming <qiming.y...@intel.com>; Zhang, Qi > Z <qi.z.zh...@intel.com>; Wu, Jingjing <jingjing...@intel.com>; Lu, > Wenzhuo <wenzhuo...@intel.com>; Ferruh Yigit <ferruh.yi...@intel.com>; Li, > Xiaoyun <xiaoyun...@intel.com> > Subject: [PATCH] net/ice: fix scalar Rx and Tx path segment > > CRC is stripped by the hardware in the scattered Rx path. If the last buffer > packet length is '0', the scalar Tx path would send empty buffer that causes > the Tx queue to overflow. > > This patch adds a judgment for the last buffer length to fix this issue, so > that > it would free the mbuf associated to the last one if the last buffer is empty. > > Fixes: 6eac0b7fde95 ("net/ice: support advance Rx/Tx") > Cc: sta...@dpdk.org > > Signed-off-by: Mingjin Ye <mingjinx...@intel.com>
V1 patch verified and passed. Remains some compile errors to fix for redhat. Tested-by: Ke Xu <ke1...@intel.com> > --- > drivers/net/ice/ice_rxtx.c | 53 ++++++++++++++++++++++++++++++++++++-- > 1 file changed, 51 insertions(+), 2 deletions(-) >