aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nsproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/nsproxy.h')
-rw-r--r--include/linux/nsproxy.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/nsproxy.h b/include/linux/nsproxy.h
index 7ebe66670c59..9c2e0ad508db 100644
--- a/include/linux/nsproxy.h
+++ b/include/linux/nsproxy.h
@@ -5,6 +5,7 @@
5#include <linux/sched.h> 5#include <linux/sched.h>
6 6
7struct namespace; 7struct namespace;
8struct uts_namespace;
8 9
9/* 10/*
10 * A structure to contain pointers to all per-process 11 * A structure to contain pointers to all per-process
@@ -21,6 +22,7 @@ struct namespace;
21struct nsproxy { 22struct nsproxy {
22 atomic_t count; 23 atomic_t count;
23 spinlock_t nslock; 24 spinlock_t nslock;
25 struct uts_namespace *uts_ns;
24 struct namespace *namespace; 26 struct namespace *namespace;
25}; 27};
26extern struct nsproxy init_nsproxy; 28extern struct nsproxy init_nsproxy;