Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9667e9bb authored by Tom Herbert's avatar Tom Herbert Committed by David S. Miller
Browse files

ipip: Add gro callbacks to ipip offload



Add inet_gro_receive and inet_gro_complete to ipip_offload to
support GRO.

Signed-off-by: default avatarTom Herbert <therbert@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 03d56daa
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1666,6 +1666,8 @@ static const struct net_offload ipip_offload = {
	.callbacks = {
		.gso_send_check = inet_gso_send_check,
		.gso_segment	= inet_gso_segment,
		.gro_receive	= inet_gro_receive,
		.gro_complete	= inet_gro_complete,
	},
};