aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/shm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/shm.c')
-rw-r--r--ipc/shm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index 0852f206d895..242c3f66493a 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -77,7 +77,7 @@ static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp);
77static int sysvipc_shm_proc_show(struct seq_file *s, void *it); 77static int sysvipc_shm_proc_show(struct seq_file *s, void *it);
78#endif 78#endif
79 79
80static void __ipc_init __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) 80static 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
102int shm_init_ns(struct ipc_namespace *ns) 101int 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
135void __init shm_init (void) 133void __init shm_init (void)
136{ 134{