From: Will Deacon <will.deacon@arm.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: "paulmck@linux.vnet.ibm.com" <paulmck@linux.vnet.ibm.com>,
"torvalds@linux-foundation.org" <torvalds@linux-foundation.org>,
"oleg@redhat.com" <oleg@redhat.com>,
"benh@kernel.crashing.org" <benh@kernel.crashing.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>
Subject: Re: Behaviour of smp_mb__{before,after}_spin* and acquire/release
Date: Tue, 20 Jan 2015 10:38:40 +0000 [thread overview]
Message-ID: <20150120103840.GB24303@arm.com> (raw)
In-Reply-To: <20150120093443.GA11596@twins.programming.kicks-ass.net>
On Tue, Jan 20, 2015 at 09:34:43AM +0000, Peter Zijlstra wrote:
> On Tue, Jan 13, 2015 at 04:33:54PM +0000, Will Deacon wrote:
> > I started dusting off a series I've been working to implement a relaxed
> > atomic API in Linux (i.e. things like atomic_read(v, ACQUIRE)) but I'm
> > having trouble making sense of the ordering semantics we have in mainline
> > today:
>
> > 2. Does smp_mb__after_unlock_lock order smp_store_release against
> > smp_load_acquire? Again, Documentation/memory-barriers.txt puts
> > these operations into the RELEASE and ACQUIRE classes respectively,
> > but since smp_mb__after_unlock_lock is a NOP everywhere other than
> > PowerPC, I don't think this is enforced by the current code.
>
> Yeah, wasn't Paul going to talk to Ben about that? PPC is the only arch
> that has the weak ACQUIRE/RELEASE for its spinlocks.
Indeed, and I'd love to kill that, especially as its really confusing
when we have other ACQUIRE/RELEASE functions (like your smp_* accessors)
that do need explicit barriers for general RELEASE->ACQUIRE ordering.
If people start using smp_mb__after_unlock_lock for *that*, then other
architectures will need to implement it as a barrier and penalise their
spinlocks in doing so.
> > Most
> > architectures follow the pattern used by asm-generic/barrier.h:
> >
> > release: smp_mb(); STORE
> > acquire: LOAD; smp_mb();
> >
> > which doesn't provide any release -> acquire ordering afaict.
>
> Only when combined on the same address, if the LOAD observes the result
> of the STORE we can guarantee the rest of the ordering. And if you
> build a locking primitive with them (or circular lists or whatnot) you
> have that extra condition.
>
> But yes, I see your argument that this implementation is weak like the
> PPC.
I'm absolutely fine with that, I'd just like to make sure that it's
documented so that people don't use smp_mb__after_unlock_lock() to
order smp_store_release -> smp_load_acquire.
I'll have a crack at a Documentation patch if you don't beat me to it...
Will
next prev parent reply other threads:[~2015-01-20 10:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-13 16:33 Behaviour of smp_mb__{before,after}_spin* and acquire/release Will Deacon
2015-01-13 18:45 ` Oleg Nesterov
2015-01-14 11:31 ` Will Deacon
2015-01-20 3:40 ` Paul E. McKenney
2015-01-20 10:43 ` Will Deacon
2015-01-20 9:34 ` Peter Zijlstra
2015-01-20 10:38 ` Will Deacon [this message]
2015-01-20 21:35 ` Paul E. McKenney
2015-01-21 13:56 ` Will Deacon
2015-01-23 14:08 ` Will Deacon
2015-01-23 21:21 ` Paul E. McKenney
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=20150120103840.GB24303@arm.com \
--to=will.deacon@arm.com \
--cc=benh@kernel.crashing.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oleg@redhat.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peterz@infradead.org \
--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