Re: [PATCH] net/ice: fix Rx of large packets

2025-04-28 Thread Bruce Richardson
g; Burakov, Anatoly > > Subject: [PATCH] net/ice: fix Rx of large packets > >> > >> The determination of whether or not the buffer size is less than the >> packet MTU is made in the Rx queue start function in the ice driver. >> This means that

Re: [PATCH] net/ice: fix Rx of large packets

2025-04-17 Thread Liao, TingtingX
> -Original Message- > From: Bruce Richardson > Sent: Tuesday, April 08, 2025 23:57 > To: dev@dpdk.org > Cc: Richardson, Bruce; sta...@dpdk.org; Burakov, Anatoly > Subject: [PATCH] net/ice: fix Rx of large packets > > The determination of whether or not the buff

[PATCH] net/ice: fix Rx of large packets

2025-04-08 Thread Bruce Richardson
The determination of whether or not the buffer size is less than the packet MTU is made in the Rx queue start function in the ice driver. This means that we cannot choose the Rx function before we have started the queues. Move the Rx function section down in the code to fix this. Fixes: 3c79a3d91d