diff options
author | Serge E. Hallyn <serue@us.ibm.com> | 2006-10-02 05:18:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 10:57:20 -0400 |
commit | 0437eb594e6e5e699248f865482e61034be846d0 (patch) | |
tree | 1cf333f108c6d613f54b2a91fe1ad0f12a04bace /arch/arm26 | |
parent | ab516013ad9ca47f1d3a936fa81303bfbf734d52 (diff) |
[PATCH] nsproxy: move init_nsproxy into kernel/nsproxy.c
Move the init_nsproxy definition out of arch/ into kernel/nsproxy.c. This
avoids all arches having to be updated. Compiles and boots on s390.
Signed-off-by: Serge E. 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/arm26')
-rw-r--r-- | arch/arm26/kernel/init_task.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm26/kernel/init_task.c b/arch/arm26/kernel/init_task.c index 678c7b57f9c7..4191565b889b 100644 --- a/arch/arm26/kernel/init_task.c +++ b/arch/arm26/kernel/init_task.c | |||
@@ -11,7 +11,6 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/init_task.h> | 12 | #include <linux/init_task.h> |
13 | #include <linux/mqueue.h> | 13 | #include <linux/mqueue.h> |
14 | #include <linux/nsproxy.h> | ||
15 | 14 | ||
16 | #include <asm/uaccess.h> | 15 | #include <asm/uaccess.h> |
17 | #include <asm/pgtable.h> | 16 | #include <asm/pgtable.h> |
@@ -21,7 +20,6 @@ static struct files_struct init_files = INIT_FILES; | |||
21 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | 20 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); |
22 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | 21 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); |
23 | struct mm_struct init_mm = INIT_MM(init_mm); | 22 | struct mm_struct init_mm = INIT_MM(init_mm); |
24 | struct nsproxy init_nsproxy = INIT_NSPROXY(init_nsproxy); | ||
25 | 23 | ||
26 | EXPORT_SYMBOL(init_mm); | 24 | EXPORT_SYMBOL(init_mm); |
27 | 25 | ||