diff options
author | Eric W. Biederman <ebiederm@aristanetworks.com> | 2009-02-22 00:10:18 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-03 01:14:21 -0800 |
commit | 2f20d2e667ab1ca44cde5fb361386dff5bb6081d (patch) | |
tree | 5041eaca4e87d1203c631c6cb482d3b8fc7defb9 | |
parent | 6eb0777228f31932fc941eafe8b08848466630a1 (diff) | |
download | op-kernel-dev-2f20d2e667ab1ca44cde5fb361386dff5bb6081d.zip op-kernel-dev-2f20d2e667ab1ca44cde5fb361386dff5bb6081d.tar.gz |
tcp: Like icmp use register_pernet_subsys
To remove the possibility of packets flying around when network
devices are being cleaned up use reisger_pernet_subsys instead of
register_pernet_device.
Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com>
Acked-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 19d7b42..cf74c41 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -2443,7 +2443,7 @@ static struct pernet_operations __net_initdata tcp_sk_ops = { void __init tcp_v4_init(void) { inet_hashinfo_init(&tcp_hashinfo); - if (register_pernet_device(&tcp_sk_ops)) + if (register_pernet_subsys(&tcp_sk_ops)) panic("Failed to create the TCP control socket.\n"); } |