Re: [PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-27 Thread Johannes Berg
On Tue, 2021-01-26 at 12:32 -0800, Jakub Kicinski wrote: > On Mon, 25 Jan 2021 07:09:49 -0800 Eric Dumazet wrote: > > From: Eric Dumazet > > > > net/core/tso.c got recent support for USO, and this broke iwlfifi > > because the driver implemented a limited form of GSO. > > > > Providing ->gso_typ

Re: [PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-26 Thread Coelho, Luciano
On Tue, 2021-01-26 at 21:55 +0100, Johannes Berg wrote: > On Tue, 2021-01-26 at 12:32 -0800, Jakub Kicinski wrote: > > On Mon, 25 Jan 2021 07:09:49 -0800 Eric Dumazet wrote: > > > From: Eric Dumazet > > > > > > net/core/tso.c got recent support for USO, and this broke iwlfifi > > > because the dr

Re: [PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-26 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Mon, 25 Jan 2021 07:09:49 -0800 you wrote: > From: Eric Dumazet > > net/core/tso.c got recent support for USO, and this broke iwlfifi > because the driver implemented a limited form of GSO. > > Providing ->gso_type allows

Re: [PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-26 Thread Jakub Kicinski
On Mon, 25 Jan 2021 07:09:49 -0800 Eric Dumazet wrote: > From: Eric Dumazet > > net/core/tso.c got recent support for USO, and this broke iwlfifi > because the driver implemented a limited form of GSO. > > Providing ->gso_type allows for skb_is_gso_tcp() to provide > a correct result. > > Fixes

[PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-25 Thread Eric Dumazet
From: Eric Dumazet net/core/tso.c got recent support for USO, and this broke iwlfifi because the driver implemented a limited form of GSO. Providing ->gso_type allows for skb_is_gso_tcp() to provide a correct result. Fixes: 3d5b459ba0e3 ("net: tso: add UDP segmentation support") Signed-off-by:

Re: [PATCH net] iwlwifi: provide gso_type to GSO packets

2021-01-25 Thread Ben Greear
On 1/25/21 7:09 AM, Eric Dumazet wrote: From: Eric Dumazet net/core/tso.c got recent support for USO, and this broke iwlfifi because the driver implemented a limited form of GSO. Providing ->gso_type allows for skb_is_gso_tcp() to provide a correct result. Fixes: 3d5b459ba0e3 ("net: tso: add