diff options
author | Serge E. Hallyn <serue@us.ibm.com> | 2006-10-02 05:18:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 10:57:20 -0400 |
commit | ab516013ad9ca47f1d3a936fa81303bfbf734d52 (patch) | |
tree | 643ea9c4c3d28958cb42dd87b1856f74edd22b11 /arch/um/kernel | |
parent | b1ba4ddde0cf67991d89f039365eaaeda61aa027 (diff) |
[PATCH] namespaces: add nsproxy
This patch adds a nsproxy structure to the task struct. Later patches will
move the fs namespace pointer into this structure, and introduce a new utsname
namespace into the nsproxy.
The vserver and openvz functionality, then, would be implemented in large part
by virtualizing/isolating more and more resources into namespaces, each
contained in the nsproxy.
[akpm@osdl.org: build fix]
Signed-off-by: Serge Hallyn <serue@us.ibm.com>
Cc: Kirill Korotaev <dev@openvz.org>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Herbert Poetzl <herbert@13thfloor.at>
Cc: Andrey Savochkin <saw@sw.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/init_task.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/kernel/init_task.c b/arch/um/kernel/init_task.c index 49ed5ddf0704..11188af64d86 100644 --- a/arch/um/kernel/init_task.c +++ b/arch/um/kernel/init_task.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include "linux/sched.h" | 9 | #include "linux/sched.h" |
10 | #include "linux/init_task.h" | 10 | #include "linux/init_task.h" |
11 | #include "linux/mqueue.h" | 11 | #include "linux/mqueue.h" |
12 | #include "linux/nsproxy.h" | ||
12 | #include "asm/uaccess.h" | 13 | #include "asm/uaccess.h" |
13 | #include "asm/pgtable.h" | 14 | #include "asm/pgtable.h" |
14 | #include "user_util.h" | 15 | #include "user_util.h" |
@@ -17,6 +18,7 @@ | |||
17 | 18 | ||
18 | static struct fs_struct init_fs = INIT_FS; | 19 | static struct fs_struct init_fs = INIT_FS; |
19 | struct mm_struct init_mm = INIT_MM(init_mm); | 20 | struct mm_struct init_mm = INIT_MM(init_mm); |
21 | struct nsproxy init_nsproxy = INIT_NSPROXY(init_nsproxy); | ||
20 | static struct files_struct init_files = INIT_FILES; | 22 | static struct files_struct init_files = INIT_FILES; |
21 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | 23 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); |
22 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | 24 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); |