Re: [dpdk-dev] [PATCH] net/octeontx2: fix corruption in segments list

2021-01-12 Thread Jerin Jacob
On Mon, Dec 28, 2020 at 5:48 PM Nithin Dabilpuram wrote: > > On Mon, Dec 21, 2020 at 07:33:08PM +0530, sk...@marvell.com wrote: > > From: Sunil Kumar Kori > > > > On Tx, lastseg->next is not being reset to null for multi segmented packet > > and same mbuf can be used on Rx which has a stale mbuf

Re: [dpdk-dev] [PATCH] net/octeontx2: fix corruption in segments list

2020-12-28 Thread Nithin Dabilpuram
On Mon, Dec 21, 2020 at 07:33:08PM +0530, sk...@marvell.com wrote: > From: Sunil Kumar Kori > > On Tx, lastseg->next is not being reset to null for multi segmented packet > and same mbuf can be used on Rx which has a stale mbuf entry into > mbuf->next. > > On Rx, application receives mbuf with m

[dpdk-dev] [PATCH] net/octeontx2: fix corruption in segments list

2020-12-21 Thread skori
From: Sunil Kumar Kori On Tx, lastseg->next is not being reset to null for multi segmented packet and same mbuf can be used on Rx which has a stale mbuf entry into mbuf->next. On Rx, application receives mbuf with mbuf->next uninitialized though mbuf->nb_segs is correct. Application iterates ove