diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-06-30 16:36:15 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-30 17:12:06 -0400 |
commit | adcfc7d0b4d7bc3c7edac6fdde9f3ae510bd6054 (patch) | |
tree | 6bf8f6facbfbac9ea8ed4d3310ea46a7518ae453 /net/ipv6/tcp_ipv6.c | |
parent | 2889139a6acd2945f6143eb85f7dc2a22a352e1a (diff) |
[IPV6]: Added GSO support for TCPv6
This patch adds GSO support for IPv6 and TCPv6.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index b36d5b2e7c30..bf7f8c26c488 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1606,6 +1606,7 @@ struct proto tcpv6_prot = { | |||
1606 | static struct inet6_protocol tcpv6_protocol = { | 1606 | static struct inet6_protocol tcpv6_protocol = { |
1607 | .handler = tcp_v6_rcv, | 1607 | .handler = tcp_v6_rcv, |
1608 | .err_handler = tcp_v6_err, | 1608 | .err_handler = tcp_v6_err, |
1609 | .gso_segment = tcp_tso_segment, | ||
1609 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, | 1610 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
1610 | }; | 1611 | }; |
1611 | 1612 | ||