From: Davidlohr Bueso Date: Wed, 23 Oct 2019 03:34:50 +0000 (-0700) Subject: futex: Drop leftover wake_q_add() comment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=751459043cc87c3f0098034b15ca5252d12539ab;p=linux.git futex: Drop leftover wake_q_add() comment Since the original comment, we have moved to do the task reference counting explicitly along with wake_q_add_safe(). Drop the now incorrect comment. Signed-off-by: Davidlohr Bueso Signed-off-by: Peter Zijlstra (Intel) Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: dave@stgolabs.net Link: https://lkml.kernel.org/r/20191023033450.6445-1-dave@stgolabs.net Signed-off-by: Ingo Molnar --- diff --git a/kernel/futex.c b/kernel/futex.c index bd18f60e4c6c6..43229f8999fc0 100644 --- a/kernel/futex.c +++ b/kernel/futex.c @@ -1480,7 +1480,7 @@ static void mark_wake_futex(struct wake_q_head *wake_q, struct futex_q *q) /* * Queue the task for later wakeup for after we've released - * the hb->lock. wake_q_add() grabs reference to p. + * the hb->lock. */ wake_q_add_safe(wake_q, p); }