aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/msg.c
diff options
context:
space:
mode:
authorCedric Le Goater <clg@fr.ibm.com>2007-07-16 02:40:58 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-16 12:05:47 -0400
commit7d69a1f4a72b18876c99c697692b78339d491568 (patch)
treec09faf07f15240592919ec7e3dd722fe4f1dd370 /ipc/msg.c
parent522ed7767e800cff6c650ec64b0ee0677303119c (diff)
remove CONFIG_UTS_NS and CONFIG_IPC_NS
CONFIG_UTS_NS and CONFIG_IPC_NS have very little value as they only deactivate the unshare of the uts and ipc namespaces and do not improve performance. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Acked-by: "Serge E. Hallyn" <serue@us.ibm.com> Cc: Eric W. Biederman <ebiederm@xmission.com> Cc: Herbert Poetzl <herbert@13thfloor.at> Cc: Pavel Emelianov <xemul@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/msg.c')
-rw-r--r--ipc/msg.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/msg.c b/ipc/msg.c
index a388824740e7..cbd27e519943 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -87,7 +87,7 @@ static int newque (struct ipc_namespace *ns, key_t key, int msgflg);
87static int sysvipc_msg_proc_show(struct seq_file *s, void *it); 87static int sysvipc_msg_proc_show(struct seq_file *s, void *it);
88#endif 88#endif
89 89
90static void __ipc_init __msg_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) 90static void __msg_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids)
91{ 91{
92 ns->ids[IPC_MSG_IDS] = ids; 92 ns->ids[IPC_MSG_IDS] = ids;
93 ns->msg_ctlmax = MSGMAX; 93 ns->msg_ctlmax = MSGMAX;
@@ -96,7 +96,6 @@ static void __ipc_init __msg_init_ns(struct ipc_namespace *ns, struct ipc_ids *i
96 ipc_init_ids(ids, ns->msg_ctlmni); 96 ipc_init_ids(ids, ns->msg_ctlmni);
97} 97}
98 98
99#ifdef CONFIG_IPC_NS
100int msg_init_ns(struct ipc_namespace *ns) 99int msg_init_ns(struct ipc_namespace *ns)
101{ 100{
102 struct ipc_ids *ids; 101 struct ipc_ids *ids;
@@ -128,7 +127,6 @@ void msg_exit_ns(struct ipc_namespace *ns)
128 kfree(ns->ids[IPC_MSG_IDS]); 127 kfree(ns->ids[IPC_MSG_IDS]);
129 ns->ids[IPC_MSG_IDS] = NULL; 128 ns->ids[IPC_MSG_IDS] = NULL;
130} 129}
131#endif
132 130
133void __init msg_init(void) 131void __init msg_init(void)
134{ 132{