[PATCH 1/1] ipc namespace: initialize init_ipc_ns.count to 1

Serge E. Hallyn serue at us.ibm.com
Mon Mar 2 16:40:18 PST 2009


That's one count for the init task.  Nothing else pins an
ipc ns (i.e. not ipcns->mq_mnt).  The only references to
init_ipc_ns are the sysctl .data calculations, which should
remain safe.

Signed-off-by: Serge E. Hallyn <serue at us.ibm.com>
---
 ipc/msgutil.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/ipc/msgutil.c b/ipc/msgutil.c
index e5d6da1..f095ee2 100644
--- a/ipc/msgutil.c
+++ b/ipc/msgutil.c
@@ -26,8 +26,7 @@ DEFINE_SPINLOCK(mq_lock);
  * and not CONFIG_IPC_NS.
  */
 struct ipc_namespace init_ipc_ns = {
-	/* It's not for this patch to change, but should this be 1? */
-	.count		= ATOMIC_INIT(2),
+	.count		= ATOMIC_INIT(1),
 #ifdef CONFIG_POSIX_MQUEUE
 	.mq_queues_max   = DFLT_QUEUESMAX,
 	.mq_msg_max      = DFLT_MSGMAX,
-- 
1.5.4.3



More information about the Containers mailing list