From: dave@stgolabs.net (Davidlohr Bueso)
To: kernelnewbies@lists.kernelnewbies.org
Subject: Question on mutex code
Date: Sun, 15 Mar 2015 22:19:49 -0000 [thread overview]
Message-ID: <1426457920.28068.114.camel@stgolabs.net> (raw)
In-Reply-To: <5505FE53.1060807@gmail.com>
On Sun, 2015-03-15 at 23:49 +0200, Matthias Bonne wrote:
> On 03/15/15 03:09, Davidlohr Bueso wrote:
> > On Sat, 2015-03-14 at 18:03 -0700, Davidlohr Bueso wrote:
> >> Good analysis, but not quite accurate for one simple fact: mutex
> >> trylocks _only_ use fastpaths (obviously just depend on the counter
> >> cmpxchg to 0), so you never fallback to the slowpath you are mentioning,
> >> thus the race is non existent. Please see the arch code.
> >
> > For debug we use the trylock slowpath, but so does everything else, so
> > again you cannot hit this scenario.
> >
> >
>
> You are correct of course - this is why I said that
> CONFIG_DEBUG_MUTEXES must be enabled for this to happen.
Right, so I just skimmed through the email ;)
> Can you
> explain why this scenario is still not possible in the debug case?
>
> The debug case uses mutex-null.h, which contains these macros:
>
> #define __mutex_fastpath_lock(count, fail_fn) fail_fn(count)
> #define __mutex_fastpath_lock_retval(count) (-1)
> #define __mutex_fastpath_unlock(count, fail_fn) fail_fn(count)
> #define __mutex_fastpath_trylock(count, fail_fn) fail_fn(count)
> #define __mutex_slowpath_needs_to_unlock() 1
>
> So both mutex_trylock() and mutex_unlock() always use the slow paths.
Right.
> The slowpath for mutex_unlock() is __mutex_unlock_slowpath(), which
> simply calls __mutex_unlock_common_slowpath(), and the latter starts
> like this:
>
> /*
> * As a performance measurement, release the lock before doing
> other
> * wakeup related duties to follow. This allows other tasks to
> acquire
> * the lock sooner, while still handling cleanups in past
> unlock calls.
> * This can be done as we do not enforce strict equivalence
> between the
> * mutex counter and wait_list.
> *
> *
> * Some architectures leave the lock unlocked in the fastpath
> failure
> * case, others need to leave it locked. In the later case we
> have to
> * unlock it here - as the lock counter is currently 0 or negative.
> */
> if (__mutex_slowpath_needs_to_unlock())
> atomic_set(&lock->count, 1);
Correct, in debug this is most likely true, yet safe because everything
is serialized through the mutex wait_lock.
>
> spin_lock_mutex(&lock->wait_lock, flags);
> [...]
>
> So the counter is set to 1 before taking the spinlock, which I think
> might cause the race. Did I miss something?
So in debug we play no counter/wait_list games when trying to grab the
lock, ie things such as lock stealing or optimistic spinning.
Furthermore, it is the unlocker thread's duty to wakeup the next task in
the list, so nothing can jump in and steal the lock. Additionally,
ordering also relies on the wait_queue ticket spinlock.
next prev parent reply other threads:[~2015-03-15 22:19 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-04 0:13 Question on mutex code Matthias Bonne
2015-03-10 13:03 ` Yann Droneaud
2015-03-10 14:59 ` Valdis.Kletnieks at vt.edu
2015-03-14 23:08 ` Matthias Bonne
2015-03-14 23:05 ` Matthias Bonne
2015-03-15 1:04 ` Davidlohr Bueso
2015-03-15 1:10 ` Davidlohr Bueso
2015-03-15 21:49 ` Matthias Bonne
2015-03-15 22:11 ` Rabin Vincent
2015-03-16 3:40 ` Matthias Bonne
2015-03-15 22:19 ` Davidlohr Bueso [this message]
2015-03-15 22:24 ` 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=1426457920.28068.114.camel@stgolabs.net \
--to=dave@stgolabs.net \
--cc=kernelnewbies@lists.kernelnewbies.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;
as well as URLs for NNTP newsgroup(s).