From: Paolo Abeni Date: Tue, 30 Mar 2021 10:28:55 +0000 (+0200) Subject: bareudp: allow UDP L4 GRO passthrou X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b03ef676ba6dc53c728e936a1709d4bf35362184;p=linux.git bareudp: allow UDP L4 GRO passthrou Similar to the previous commit, let even geneve passthrou the L4 GRO packets Signed-off-by: Paolo Abeni Signed-off-by: David S. Miller --- diff --git a/drivers/net/bareudp.c b/drivers/net/bareudp.c index 7511bca9c15ed..edfad93e7b686 100644 --- a/drivers/net/bareudp.c +++ b/drivers/net/bareudp.c @@ -218,6 +218,7 @@ static struct socket *bareudp_create_sock(struct net *net, __be16 port) if (err < 0) return ERR_PTR(err); + udp_allow_gso(sock->sk); return sock; }