aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/nsproxy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index bd9cb435dfe0..f223c15c18e9 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -45,8 +45,10 @@ static inline struct nsproxy *clone_namespaces(struct nsproxy *orig)
45 struct nsproxy *ns; 45 struct nsproxy *ns;
46 46
47 ns = kmemdup(orig, sizeof(struct nsproxy), GFP_KERNEL); 47 ns = kmemdup(orig, sizeof(struct nsproxy), GFP_KERNEL);
48 if (ns) 48 if (ns) {
49 atomic_set(&ns->count, 1); 49 atomic_set(&ns->count, 1);
50 ns->id = -1;
51 }
50 return ns; 52 return ns;
51} 53}
52 54