diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-03-07 18:48:39 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-05-10 14:35:47 -0700 |
commit | a00eaf11a223c63fbb212369d6db69ce4c55a2d1 (patch) | |
tree | 1c38d8591c229243cb09386a0f5b3737da421cf1 /fs/proc | |
parent | 34482e89a5218f0f9317abf1cfba3bb38b5c29dd (diff) | |
download | linux-rt-a00eaf11a223c63fbb212369d6db69ce4c55a2d1.tar.gz |
ns proc: Add support for the ipc namespace
Acked-by: Daniel Lezcano <daniel.lezcano@free.fr>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/namespaces.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c index b017181f1273..f18d6d58bf79 100644 --- a/fs/proc/namespaces.c +++ b/fs/proc/namespaces.c @@ -22,6 +22,9 @@ static const struct proc_ns_operations *ns_entries[] = { #ifdef CONFIG_UTS_NS &utsns_operations, #endif +#ifdef CONFIG_IPC_NS + &ipcns_operations, +#endif }; static const struct file_operations ns_file_operations = { |