diff options
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index fc9997260a6b..3ad44e176503 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
@@ -1443,6 +1443,11 @@ static const struct inet6_protocol udpv6_protocol = { | |||
1443 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, | 1443 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
1444 | }; | 1444 | }; |
1445 | 1445 | ||
1446 | static const struct net_offload udpv6_offload = { | ||
1447 | .gso_send_check = udp6_ufo_send_check, | ||
1448 | .gso_segment = udp6_ufo_fragment, | ||
1449 | }; | ||
1450 | |||
1446 | /* ------------------------------------------------------------------------ */ | 1451 | /* ------------------------------------------------------------------------ */ |
1447 | #ifdef CONFIG_PROC_FS | 1452 | #ifdef CONFIG_PROC_FS |
1448 | 1453 | ||