[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1461208164-29150-1-git-send-email-dave@stgolabs.net>
Date: Wed, 20 Apr 2016 20:09:24 -0700
From: Davidlohr Bueso <dave@...olabs.net>
To: mingo@...nel.org, tglx@...utronix.de
Cc: peterz@...radead.org, bigeasy@...utronix.de, dvhart@...radead.org,
stable@...nel.org, linux-kernel@...r.kernel.org,
Davidlohr Bueso <dave@...olabs.net>,
Davidlohr Bueso <dbueso@...e.de>
Subject: [PATCH -tip] futex: Acknowledge a new waiter in counter before plist
Otherwise an incoming waker on the dest hash bucket can miss
the waiter adding itself to the plist during the lockless
check optimization (small window but still the correct way
of doing this); similarly to the decrement counterpart.
Cc: stable@...nel.org (since v3.14+)
Suggested-by: Peter Zijlstra <peterz@...radead.org>
Signed-off-by: Davidlohr Bueso <dbueso@...e.de>
---
kernel/futex.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/futex.c b/kernel/futex.c
index e66e8d4fccff..913f05cfe8b8 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -1745,8 +1745,8 @@ void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
if (likely(&hb1->chain != &hb2->chain)) {
hb_remove_q(q, hb1);
hb_waiters_dec(hb1);
- plist_add(&q->list, &hb2->chain);
hb_waiters_inc(hb2);
+ plist_add(&q->list, &hb2->chain);
q->lock_ptr = &hb2->lock;
}
get_futex_key_refs(key2);
--
2.8.1
Powered by blists - more mailing lists