]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
net: veth: do not manipulate GRO when using XDP
authorIgnat Korchagin <ignat@cloudflare.com>
Wed, 13 Mar 2024 18:37:58 +0000 (19:37 +0100)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:18:56 +0000 (18:18 -0400)
commitabac9048ed1954016222770a34bcf95090e1b4af
tree6e4b4c6309a4e00f90d661b2543b130b0415684f
parent44d5790232822f6dd56e29e0e4dc376830ae1f1a
net: veth: do not manipulate GRO when using XDP

[ Upstream commit d7db7775ea2e31502d46427f5efd385afc4ff1eb ]

Commit d3256efd8e8b ("veth: allow enabling NAPI even without XDP") tried to fix
the fact that GRO was not possible without XDP, because veth did not use NAPI
without XDP. However, it also introduced the behaviour that GRO is always
enabled, when XDP is enabled.

While it might be desired for most cases, it is confusing for the user at best
as the GRO flag suddenly changes, when an XDP program is attached. It also
introduces some complexities in state management as was partially addressed in
commit fe9f801355f0 ("net: veth: clear GRO when clearing XDP even when down").

But the biggest problem is that it is not possible to disable GRO at all, when
an XDP program is attached, which might be needed for some use cases.

Fix this by not touching the GRO flag on XDP enable/disable as the code already
supports switching to NAPI if either GRO or XDP is requested.

Link: https://lore.kernel.org/lkml/20240311124015.38106-1-ignat@cloudflare.com/
Fixes: d3256efd8e8b ("veth: allow enabling NAPI even without XDP")
Fixes: fe9f801355f0 ("net: veth: clear GRO when clearing XDP even when down")
Signed-off-by: Ignat Korchagin <ignat@cloudflare.com>
Reviewed-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/veth.c