mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
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>
This commit is contained in:
parent
6eb0777228
commit
2f20d2e667
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user