From: Randy Dunlap <rdunlap@infradead.org>
To: Davidlohr Bueso <davidlohr@hp.com>, linux-kernel@vger.kernel.org
Cc: mingo@redhat.com, dvhart@linux.intel.com, peterz@infradead.org,
tglx@linutronix.de, paulmck@linux.vnet.ibm.com, efault@gmx.de,
jeffm@suse.com, torvalds@linux-foundation.org, jason.low2@hp.com,
Waiman.Long@hp.com, tom.vaden@hp.com, scott.norton@hp.com,
aswin@hp.com, Ingo Molnar <mingo@kernel.org>
Subject: Re: [PATCH v4 3/4] futex: Document ordering guarantees
Date: Thu, 19 Dec 2013 12:51:48 -0800 [thread overview]
Message-ID: <52B35C64.3050504@infradead.org> (raw)
In-Reply-To: <1387485950-7320-4-git-send-email-davidlohr@hp.com>
On 12/19/13 12:45, Davidlohr Bueso wrote:
> From: Thomas Gleixner <tglx@linutronix.de>
>
> That's essential, if you want to hack on futexes.
>
> Cc: Ingo Molnar <mingo@kernel.org>
> Cc: Darren Hart <dvhart@linux.intel.com>
> Acked-by: Peter Zijlstra <peterz@infradead.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Cc: Mike Galbraith <efault@gmx.de>
> Cc: Jeff Mahoney <jeffm@suse.com>
> Cc: Linus Torvalds <torvalds@linux-foundation.org>
> Cc: Scott Norton <scott.norton@hp.com>
> Cc: Tom Vaden <tom.vaden@hp.com>
> Cc: Aswin Chandramouleeswaran <aswin@hp.com>
> Cc: Waiman Long <Waiman.Long@hp.com>
> Cc: Jason Low <jason.low2@hp.com>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
> ---
> kernel/futex.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 57 insertions(+)
>
> diff --git a/kernel/futex.c b/kernel/futex.c
> index 577481d..af1fc31 100644
> --- a/kernel/futex.c
> +++ b/kernel/futex.c
> @@ -69,6 +69,63 @@
>
> #include "locking/rtmutex_common.h"
>
> +/*
> + * Basic futex operation and ordering guarantees:
> + *
> + * The waiter reads the futex value in user space and calls
> + * futex_wait(). It computes the hash bucket and acquires the hash
does It
refer to "the waiter" or to futex_wait()?
I read it as referring to the waiter, but ISTM that the comments are using It
to refer to futex_wait()... ???
Thanks.
> + * bucket lock. After that it reads the futex user space value again
> + * and verifies that the data has not changed. If it has not changed
> + * it enqueues itself into the hash bucket, releases the hash
> + * bucket lock and schedules.
> + *
> + * The waker side modifies the user space value of the futex and calls
> + * futex_wake(). It computes the hash bucket and acquires the hash
> + * bucket lock. Then it looks for waiters on that futex in the hash
> + * bucket and wakes them.
> + *
> + * Note that the spin_lock serializes waiters and wakers, so that the
> + * following scenario is avoided:
> + *
--
~Randy
next prev parent reply other threads:[~2013-12-19 20:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-19 20:45 [PATCH v4 0/4] futex: Wakeup optimizations Davidlohr Bueso
2013-12-19 20:45 ` [PATCH v4 1/4] futex: Misc cleanups Davidlohr Bueso
2013-12-19 20:45 ` [PATCH v4 2/4] futex: Larger hash table Davidlohr Bueso
2013-12-19 20:45 ` [PATCH v4 3/4] futex: Document ordering guarantees Davidlohr Bueso
2013-12-19 20:51 ` Randy Dunlap [this message]
2013-12-19 21:00 ` Davidlohr Bueso
2013-12-19 21:07 ` Darren Hart
2013-12-19 23:05 ` Randy Dunlap
2013-12-19 23:19 ` Darren Hart
2013-12-20 8:17 ` Ingo Molnar
2013-12-22 23:24 ` Davidlohr Bueso
2013-12-19 20:45 ` [PATCH v4 4/4] futex: Avoid taking hb lock if nothing to wakeup Davidlohr Bueso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52B35C64.3050504@infradead.org \
--to=rdunlap@infradead.org \
--cc=Waiman.Long@hp.com \
--cc=aswin@hp.com \
--cc=davidlohr@hp.com \
--cc=dvhart@linux.intel.com \
--cc=efault@gmx.de \
--cc=jason.low2@hp.com \
--cc=jeffm@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=mingo@redhat.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peterz@infradead.org \
--cc=scott.norton@hp.com \
--cc=tglx@linutronix.de \
--cc=tom.vaden@hp.com \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome