summaryrefslogtreecommitdiffstats
path: root/ipc/msg.c
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2017-07-12 17:35:22 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-07-12 19:26:02 -0400
commit3d3653f9732c73feb8c4addfc1cbdaa292a399fa (patch)
tree325411c382f3be2925f8718591c503d41fea7943 /ipc/msg.c
parent51c23b7b7db52493d4fc869cec8c3e8fe27bfcd3 (diff)
ipc: move atomic_set() to where it is needed
Only after ipc_addid() has succeeded will refcounting be used, so move initialization into ipc_addid() and remove from open-coded *_alloc() routines. Link: http://lkml.kernel.org/r/20170525185107.12869-17-manfred@colorfullife.com Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Manfred Spraul <manfred@colorfullife.com> Cc: Davidlohr Bueso <dave@stgolabs.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/msg.c')
-rw-r--r--ipc/msg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ipc/msg.c b/ipc/msg.c
index cd90bfde89a4..770342e1d327 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -117,8 +117,6 @@ static struct msg_queue *msg_alloc(void)
117 if (unlikely(!msq)) 117 if (unlikely(!msq))
118 return NULL; 118 return NULL;
119 119
120 atomic_set(&msq->q_perm.refcount, 1);
121
122 return msq; 120 return msq;
123} 121}
124 122