Re: [dpdk-dev] [PATCH] ethdev: fix removing jumbo offload flag

2021-10-22 Thread Ferruh Yigit
On 10/22/2021 1:23 PM, Andrew Rybchenko wrote: On 10/22/21 3:17 PM, Ferruh Yigit wrote: After DEV_RX_OFFLOAD_JUMBO_FRAME flag removed, jumbo frame decision is given by MTU value checks, but some of the checks were wrong by mistake, causing device initialization to fail, fixing them. Also removi

Re: [dpdk-dev] [PATCH] ethdev: fix removing jumbo offload flag

2021-10-22 Thread Andrew Rybchenko
On 10/22/21 3:17 PM, Ferruh Yigit wrote: > After DEV_RX_OFFLOAD_JUMBO_FRAME flag removed, jumbo frame decision is > given by MTU value checks, but some of the checks were wrong by mistake, > causing device initialization to fail, fixing them. > > Also removing 'Jumbo frame' feature. Sorry, but I

[dpdk-dev] [PATCH] ethdev: fix removing jumbo offload flag

2021-10-22 Thread Ferruh Yigit
After DEV_RX_OFFLOAD_JUMBO_FRAME flag removed, jumbo frame decision is given by MTU value checks, but some of the checks were wrong by mistake, causing device initialization to fail, fixing them. Also removing 'Jumbo frame' feature. Fixes: b563c1421282 ("ethdev: remove jumbo offload flag") Signe