diff options
author | Cedric Le Goater <clg@fr.ibm.com> | 2007-07-16 02:40:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:47 -0400 |
commit | 7d69a1f4a72b18876c99c697692b78339d491568 (patch) | |
tree | c09faf07f15240592919ec7e3dd722fe4f1dd370 /ipc/shm.c | |
parent | 522ed7767e800cff6c650ec64b0ee0677303119c (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/shm.c')
-rw-r--r-- | ipc/shm.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -77,7 +77,7 @@ static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp); | |||
77 | static int sysvipc_shm_proc_show(struct seq_file *s, void *it); | 77 | static int sysvipc_shm_proc_show(struct seq_file *s, void *it); |
78 | #endif | 78 | #endif |
79 | 79 | ||
80 | static void __ipc_init __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) | 80 | static void __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) |
81 | { | 81 | { |
82 | ns->ids[IPC_SHM_IDS] = ids; | 82 | ns->ids[IPC_SHM_IDS] = ids; |
83 | ns->shm_ctlmax = SHMMAX; | 83 | ns->shm_ctlmax = SHMMAX; |
@@ -98,7 +98,6 @@ static void do_shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *shp) | |||
98 | shm_destroy(ns, shp); | 98 | shm_destroy(ns, shp); |
99 | } | 99 | } |
100 | 100 | ||
101 | #ifdef CONFIG_IPC_NS | ||
102 | int shm_init_ns(struct ipc_namespace *ns) | 101 | int shm_init_ns(struct ipc_namespace *ns) |
103 | { | 102 | { |
104 | struct ipc_ids *ids; | 103 | struct ipc_ids *ids; |
@@ -130,7 +129,6 @@ void shm_exit_ns(struct ipc_namespace *ns) | |||
130 | kfree(ns->ids[IPC_SHM_IDS]); | 129 | kfree(ns->ids[IPC_SHM_IDS]); |
131 | ns->ids[IPC_SHM_IDS] = NULL; | 130 | ns->ids[IPC_SHM_IDS] = NULL; |
132 | } | 131 | } |
133 | #endif | ||
134 | 132 | ||
135 | void __init shm_init (void) | 133 | void __init shm_init (void) |
136 | { | 134 | { |