From: Daniel Lezcano Date: Fri, 11 Apr 2008 03:53:10 +0000 (-0700) Subject: [NETNS][IPV6] tcp - assign the netns for timewait sockets X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~33769^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7951f0b03a63d657c72c7d54d306ef3357e7e604;p=mirror_ubuntu-artful-kernel.git [NETNS][IPV6] tcp - assign the netns for timewait sockets Copy the network namespace from the socket to the timewait socket. Signed-off-by: Daniel Lezcano Acked-by: Mark Lord Signed-off-by: David S. Miller --- diff --git a/net/ipv4/inet_timewait_sock.c b/net/ipv4/inet_timewait_sock.c index 876169f3a528..717c411a5c6b 100644 --- a/net/ipv4/inet_timewait_sock.c +++ b/net/ipv4/inet_timewait_sock.c @@ -124,6 +124,7 @@ struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk, const int stat tw->tw_hash = sk->sk_hash; tw->tw_ipv6only = 0; tw->tw_prot = sk->sk_prot_creator; + tw->tw_net = sk->sk_net; atomic_set(&tw->tw_refcnt, 1); inet_twsk_dead_node_init(tw); __module_get(tw->tw_prot->owner);