aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/tcp_ipv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r--net/ipv6/tcp_ipv6.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 80eab71e77ff..8bf59ee51cdb 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -2125,8 +2125,10 @@ static struct tcp_seq_afinfo tcp6_seq_afinfo = {
2125 .owner = THIS_MODULE, 2125 .owner = THIS_MODULE,
2126 .name = "tcp6", 2126 .name = "tcp6",
2127 .family = AF_INET6, 2127 .family = AF_INET6,
2128 .seq_show = tcp6_seq_show,
2129 .seq_fops = &tcp6_seq_fops, 2128 .seq_fops = &tcp6_seq_fops,
2129 .seq_ops = {
2130 .show = tcp6_seq_show,
2131 },
2130}; 2132};
2131 2133
2132int tcp6_proc_init(struct net *net) 2134int tcp6_proc_init(struct net *net)