diff options
| author | Denis V. Lunev <[email protected]> | 2008-04-03 21:28:30 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-04-03 21:28:30 +0000 |
| commit | 5677242f432102dea9e6eceec1dc089e2f709ca4 (patch) | |
| tree | 73036437b91f2e8cd5427be48a588bff3af587eb /net/ipv4/tcp_ipv4.c | |
| parent | [INET]: Let inet_ctl_sock_create return sock rather than socket. (diff) | |
| download | kernel-5677242f432102dea9e6eceec1dc089e2f709ca4.tar.gz kernel-5677242f432102dea9e6eceec1dc089e2f709ca4.zip | |
[NETNS]: Inet control socket should not hold a namespace.
This is a generic requirement, so make inet_ctl_sock_create namespace
aware and create a inet_ctl_sock_destroy wrapper around
sk_release_kernel.
Signed-off-by: Denis V. Lunev <[email protected]>
Acked-by: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
| -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 cfe5df76e14b..dc8c3dc75fe5 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -2491,7 +2491,7 @@ struct proto tcp_prot = { void __init tcp_v4_init(void) { if (inet_ctl_sock_create(&tcp_sock, PF_INET, SOCK_RAW, - IPPROTO_TCP) < 0) + IPPROTO_TCP, &init_net) < 0) panic("Failed to create the TCP control socket.\n"); } |
