Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6003a93e authored by Manfred Spraul's avatar Manfred Spraul Committed by Linus Torvalds
Browse files

[PATCH] add missing memory barriers to ipc/sem.c



Two smp_wmb() statements are missing in the sysv sem code: This could
cause stack corruptions.

The attached patch adds them.

Signed-Off-By: default avatarManfred Spraul <manfred@colorfullife.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a7c2491a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -381,6 +381,7 @@ static void update_queue (struct sem_array * sma)
			/* hands-off: q will disappear immediately after
			 * writing q->status.
			 */
			smb_wmb();
			q->status = error;
			q = n;
		} else {
@@ -461,6 +462,7 @@ static void freeary (struct sem_array *sma, int id)
		n = q->next;
		q->status = IN_WAKEUP;
		wake_up_process(q->sleeper); /* doesn't sleep */
		smp_wmb();
		q->status = -EIDRM;	/* hands-off q */
		q = n;
	}