aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorSerge E. Hallyn <serue@us.ibm.com>2009-04-06 22:01:08 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-07 11:31:09 -0400
commit614b84cf4e4a920d2af32b8f147ea1e3b8c27ea6 (patch)
tree52478e38cd400042bd89f123c4101c95943ae492 /init
parent909e6d94795654040ed416ac69858d5d2ce66dd3 (diff)
namespaces: mqueue ns: move mqueue_mnt into struct ipc_namespace
Move mqueue vfsmount plus a few tunables into the ipc_namespace struct. The CONFIG_IPC_NS boolean and the ipc_namespace struct will serve both the posix message queue namespaces and the SYSV ipc namespaces. The sysctl code will be fixed separately in patch 3. After just this patch, making a change to posix mqueue tunables always changes the values in the initial ipc namespace. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Signed-off-by: Serge E. Hallyn <serue@us.ibm.com> Cc: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/Kconfig b/init/Kconfig
index c52d1d48272a..a0807ba91644 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -670,10 +670,10 @@ config UTS_NS
670 670
671config IPC_NS 671config IPC_NS
672 bool "IPC namespace" 672 bool "IPC namespace"
673 depends on NAMESPACES && SYSVIPC 673 depends on NAMESPACES && (SYSVIPC || POSIX_MQUEUE)
674 help 674 help
675 In this namespace tasks work with IPC ids which correspond to 675 In this namespace tasks work with IPC ids which correspond to
676 different IPC objects in different namespaces 676 different IPC objects in different namespaces.
677 677
678config USER_NS 678config USER_NS
679 bool "User namespace (EXPERIMENTAL)" 679 bool "User namespace (EXPERIMENTAL)"