aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-04-16 01:59:46 -0700
committerDavid S. Miller <davem@davemloft.net>2008-04-16 01:59:46 -0700
commit65a18ec58e5e6186103f62f720acea94dfb26f4e (patch)
treeaa0e58979c343d4519ba9dfa3a1e6a416e98e16b /include/net
parent[NETNS]: Make netns refconting debug like a socket one. (diff)
downloadlinux-dev-65a18ec58e5e6186103f62f720acea94dfb26f4e.tar.xz
linux-dev-65a18ec58e5e6186103f62f720acea94dfb26f4e.zip
[NETNS]: Add netns refcnt debug for kernel sockets.
Protocol control sockets and netlink kernel sockets should not prevent the namespace stop request. They are initialized and disposed in a special way by sk_change_net/sk_release_kernel. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index 09255eae93e9..dc42b44c2aa1 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -1314,7 +1314,7 @@ void sock_net_set(struct sock *sk, struct net *net)
static inline void sk_change_net(struct sock *sk, struct net *net)
{
put_net(sock_net(sk));
- sock_net_set(sk, net);
+ sock_net_set(sk, hold_net(net));
}
extern void sock_enable_timestamp(struct sock *sk);