diff options
author | Cedric Le Goater <clg@fr.ibm.com> | 2006-12-08 05:37:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:52 -0500 |
commit | 9a575a92db3312a40cdf0b0406d88de88ad9741e (patch) | |
tree | 0b789528da13cd31f7fb206f184cfa123cc0ba42 /include/linux/nsproxy.h | |
parent | 61a58c6c238cc81f7742b8cc84212cc55fb57747 (diff) |
[PATCH] to nsproxy
Add the pid namespace framework to the nsproxy object. The copy of the pid
namespace only increases the refcount on the global pid namespace,
init_pid_ns, and unshare is not implemented.
There is no configuration option to activate or deactivate this feature
because this not relevant for the moment.
Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Cc: Kirill Korotaev <dev@openvz.org>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Herbert Poetzl <herbert@13thfloor.at>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/nsproxy.h')
-rw-r--r-- | include/linux/nsproxy.h | 2 |
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 @@ | |||
7 | struct mnt_namespace; | 7 | struct mnt_namespace; |
8 | struct uts_namespace; | 8 | struct uts_namespace; |
9 | struct ipc_namespace; | 9 | struct ipc_namespace; |
10 | struct 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 | }; |
31 | extern struct nsproxy init_nsproxy; | 33 | extern struct nsproxy init_nsproxy; |
32 | 34 | ||