Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -317,6 +317,8 @@ static const struct net_offload sit_offload = { ...@@ -317,6 +317,8 @@ static const struct net_offload sit_offload = {
.callbacks = { .callbacks = {
.gso_send_check = ipv6_gso_send_check, .gso_send_check = ipv6_gso_send_check,
.gso_segment = ipv6_gso_segment, .gso_segment = ipv6_gso_segment,
.gro_receive = ipv6_gro_receive,
.gro_complete = ipv6_gro_complete,
}, },
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment