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 27f37c1ec1d9..fdfb0e44912f 100644
--- a/include/linux/nsproxy.h
+++ b/include/linux/nsproxy.h
@@ -7,6 +7,7 @@
7struct mnt_namespace; 7struct mnt_namespace;
8struct uts_namespace; 8struct uts_namespace;
9struct ipc_namespace; 9struct ipc_namespace;
10struct pid_namespace;
10 11
11/* 12/*
12 * A structure to contain pointers to all per-process 13 * A structure to contain pointers to all per-process
@@ -27,6 +28,7 @@ struct nsproxy {
27 struct uts_namespace *uts_ns; 28 struct uts_namespace *uts_ns;
28 struct ipc_namespace *ipc_ns; 29 struct ipc_namespace *ipc_ns;
29 struct mnt_namespace *mnt_ns; 30 struct mnt_namespace *mnt_ns;
31 struct pid_namespace *pid_ns;
30}; 32};
31extern struct nsproxy init_nsproxy; 33extern struct nsproxy init_nsproxy;
32 34