ipcns: remove useless get/put while CLONE_NEWIPC
[firefly-linux-kernel-4.4.55.git] / ipc / namespace.c
index 4a5e752a92766d6e578c5c94499bdd71e60cbaf5..a56fc598a8071e7ca5c784e35d22c40f00d5e1f7 100644 (file)
@@ -50,15 +50,11 @@ struct ipc_namespace *copy_ipcs(unsigned long flags, struct ipc_namespace *ns)
 {
        struct ipc_namespace *new_ns;
 
-       BUG_ON(!ns);
-       get_ipc_ns(ns);
-
        if (!(flags & CLONE_NEWIPC))
-               return ns;
+               return get_ipc_ns(ns);
 
        new_ns = clone_ipc_ns(ns);
 
-       put_ipc_ns(ns);
        return new_ns;
 }