ipv6: Add new offload registration infrastructure.
[deliverable/linux.git] / net / ipv6 / tcp_ipv6.c
index c73d0ebde9c8eee55e35204dad161f6dd320e2ed..6884a95be433a070b41a41f36f40501f83d19af6 100644 (file)
@@ -2073,6 +2073,13 @@ static const struct inet6_protocol tcpv6_protocol = {
        .flags          =       INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
 };
 
+static const struct net_offload tcpv6_offload = {
+       .gso_send_check =       tcp_v6_gso_send_check,
+       .gso_segment    =       tcp_tso_segment,
+       .gro_receive    =       tcp6_gro_receive,
+       .gro_complete   =       tcp6_gro_complete,
+};
+
 static struct inet_protosw tcpv6_protosw = {
        .type           =       SOCK_STREAM,
        .protocol       =       IPPROTO_TCP,
This page took 0.028864 seconds and 5 git commands to generate.