Commit b03ef676 authored by Paolo Abeni's avatar Paolo Abeni Committed by David S. Miller
Browse files

bareudp: allow UDP L4 GRO passthrou



Similar to the previous commit, let even geneve
passthrou the L4 GRO packets

Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 61630c4f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
}