diff options
author | Denis V. Lunev <den@openvz.org> | 2008-04-14 01:13:53 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-14 01:13:53 -0400 |
commit | 5f4472c5a640c9671ca5becaebdfd6e651482176 (patch) | |
tree | e4efabf6e55c820968facc5c1c9fe5d469e5046b /net/ipv6/tcp_ipv6.c | |
parent | 68fcadd16c371d5e0698ba366f33a4f990ce83ce (diff) |
[TCP]: Remove owner from tcp_seq_afinfo.
Move it to tcp_seq_afinfo->seq_fops as should be.
Signed-off-by: Denis V. Lunev <den@openvz.org>
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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index e33a3dc7a000..231c4dddfb8c 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -2121,9 +2121,11 @@ out: | |||
2121 | } | 2121 | } |
2122 | 2122 | ||
2123 | static struct tcp_seq_afinfo tcp6_seq_afinfo = { | 2123 | static struct tcp_seq_afinfo tcp6_seq_afinfo = { |
2124 | .owner = THIS_MODULE, | ||
2125 | .name = "tcp6", | 2124 | .name = "tcp6", |
2126 | .family = AF_INET6, | 2125 | .family = AF_INET6, |
2126 | .seq_fops = { | ||
2127 | .owner = THIS_MODULE, | ||
2128 | }, | ||
2127 | .seq_ops = { | 2129 | .seq_ops = { |
2128 | .show = tcp6_seq_show, | 2130 | .show = tcp6_seq_show, |
2129 | }, | 2131 | }, |