Re: [dpdk-dev] [PATCH] net/virtio: fix device configure without jumbo Rx offload

2021-09-14 Thread Maxime Coquelin
On 9/14/21 1:17 PM, Andrew Rybchenko wrote: > On 9/14/21 2:07 PM, Maxime Coquelin wrote: >> >> >> On 9/2/21 4:39 PM, Andrew Rybchenko wrote: >>> From: Ivan Ilchenko >>> >>> Use max-pkt-len only if jumbo frames offload is requested >>> since otherwise this field isn't valid. >>> >>> Fixes: 8b90e

Re: [dpdk-dev] [PATCH] net/virtio: fix device configure without jumbo Rx offload

2021-09-14 Thread Maxime Coquelin
On 9/2/21 4:39 PM, Andrew Rybchenko wrote: > From: Ivan Ilchenko > > Use max-pkt-len only if jumbo frames offload is requested > since otherwise this field isn't valid. > > Fixes: 8b90e4358112 ("net/virtio: set offload flag for jumbo frames") > Fixes: 4e8169eb0d2d ("net/virtio: fix Rx scatter

Re: [dpdk-dev] [PATCH] net/virtio: fix device configure without jumbo Rx offload

2021-09-14 Thread Andrew Rybchenko
On 9/14/21 2:07 PM, Maxime Coquelin wrote: > > > On 9/2/21 4:39 PM, Andrew Rybchenko wrote: >> From: Ivan Ilchenko >> >> Use max-pkt-len only if jumbo frames offload is requested >> since otherwise this field isn't valid. >> >> Fixes: 8b90e4358112 ("net/virtio: set offload flag for jumbo frames"

Re: [dpdk-dev] [PATCH] net/virtio: fix device configure without jumbo Rx offload

2021-09-14 Thread Maxime Coquelin
On 9/2/21 4:39 PM, Andrew Rybchenko wrote: > From: Ivan Ilchenko > > Use max-pkt-len only if jumbo frames offload is requested > since otherwise this field isn't valid. > > Fixes: 8b90e4358112 ("net/virtio: set offload flag for jumbo frames") > Fixes: 4e8169eb0d2d ("net/virtio: fix Rx scatter

[dpdk-dev] [PATCH] net/virtio: fix device configure without jumbo Rx offload

2021-09-02 Thread Andrew Rybchenko
From: Ivan Ilchenko Use max-pkt-len only if jumbo frames offload is requested since otherwise this field isn't valid. Fixes: 8b90e4358112 ("net/virtio: set offload flag for jumbo frames") Fixes: 4e8169eb0d2d ("net/virtio: fix Rx scatter offload") Cc: sta...@dpdk.org Signed-off-by: Ivan Ilchenko