aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2009-06-17 19:27:55 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-18 16:03:55 -0400
commit612ce478fac2729ad564ec3f5d3c551674b8e9c2 (patch)
treea87745acbdac4d4b710006a003287f706a923487 /ipc
parent64424289dd2e37b4800df1f7f2ef4fe550f58729 (diff)
ipcns: extract create_ipc_ns()
clone_ipc_ns() is misnamed, it doesn't clone anything and doesn't use passed parameter. Rename it. create_ipc_ns() will be used by C/R to create fresh ipcns. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Acked-by: Serge Hallyn <serue@us.ibm.com> Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/namespace.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/ipc/namespace.c b/ipc/namespace.c
index a56fc598a807..231ee5359abf 100644
--- a/ipc/namespace.c
+++ b/ipc/namespace.c
@@ -14,7 +14,7 @@
14 14
15#include "util.h" 15#include "util.h"
16 16
17static struct ipc_namespace *clone_ipc_ns(struct ipc_namespace *old_ns) 17static struct ipc_namespace *create_ipc_ns(void)
18{ 18{
19 struct ipc_namespace *ns; 19 struct ipc_namespace *ns;
20 int err; 20 int err;
@@ -48,14 +48,9 @@ static struct ipc_namespace *clone_ipc_ns(struct ipc_namespace *old_ns)
48 48
49struct ipc_namespace *copy_ipcs(unsigned long flags, struct ipc_namespace *ns) 49struct ipc_namespace *copy_ipcs(unsigned long flags, struct ipc_namespace *ns)
50{ 50{
51 struct ipc_namespace *new_ns;
52
53 if (!(flags & CLONE_NEWIPC)) 51 if (!(flags & CLONE_NEWIPC))
54 return get_ipc_ns(ns); 52 return get_ipc_ns(ns);
55 53 return create_ipc_ns();
56 new_ns = clone_ipc_ns(ns);
57
58 return new_ns;
59} 54}
60 55
61/* 56/*