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

Commit 19424e05 authored by Tom Herbert's avatar Tom Herbert Committed by David S. Miller
Browse files

sit: Add gro callbacks to sit_offload



Add ipv6_gro_receive and ipv6_gro_complete to sit_offload to
support GRO.

Signed-off-by: default avatarTom Herbert <therbert@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9667e9bb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -317,6 +317,8 @@ static const struct net_offload sit_offload = {
	.callbacks = {
		.gso_send_check = ipv6_gso_send_check,
		.gso_segment	= ipv6_gso_segment,
		.gro_receive	= ipv6_gro_receive,
		.gro_complete	= ipv6_gro_complete,
	},
};