From: Jules Maselbas <jmaselbas@kalray.eu>
To: Peter Zijlstra <peterz@infradead.org>
Cc: "Boqun Feng" <boqun.feng@gmail.com>,
"Will Deacon" <will@kernel.org>,
"Mark Rutland" <mark.rutland@arm.com>,
"Arnd Bergmann" <arnd@arndb.de>,
linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org,
"Alan Stern" <stern@rowland.harvard.edu>,
"Andrea Parri" <parri.andrea@gmail.com>,
"Nicholas Piggin" <npiggin@gmail.com>,
"David Howells" <dhowells@redhat.com>,
"Jade Alglave" <j.alglave@ucl.ac.uk>,
"Luc Maranget" <luc.maranget@inria.fr>,
"Paul E. McKenney" <paulmck@kernel.org>,
"Akira Yokosawa" <akiyks@gmail.com>,
"Daniel Lustig" <dlustig@nvidia.com>,
"Joel Fernandes" <joel@joelfernandes.org>,
"Jonas Oberhauser" <jonas.oberhauser@huaweicloud.com>,
"Hernan Ponce de Leon" <hernan.poncedeleon@huaweicloud.com>,
"Paul Heidekrüger" <paul.heidekrueger@in.tum.de>,
"Marco Elver" <elver@google.com>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Wedson Almeida Filho" <wedsonaf@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Yann Sionneau" <ysionneau@kalray.eu>
Subject: Re: [PATCH] locking/atomic: atomic: Use arch_atomic_{read,set} in generic atomic ops
Date: Mon, 30 Jan 2023 19:15:14 +0100 [thread overview]
Message-ID: <20230130181514.GK5952@tellis.lin.mbt.kalray.eu> (raw)
In-Reply-To: <Y9Pg+aNM9f48SY5Z@hirez.programming.kicks-ass.net>
Hi Peter,
On Fri, Jan 27, 2023 at 03:34:33PM +0100, Peter Zijlstra wrote:
> On Fri, Jan 27, 2023 at 02:49:46PM +0100, Jules Maselbas wrote:
> > Hi Peter,
> >
> > On Fri, Jan 27, 2023 at 12:18:13PM +0100, Peter Zijlstra wrote:
> > > On Thu, Jan 26, 2023 at 06:33:54PM +0100, Jules Maselbas wrote:
> > >
> > > > @@ -58,9 +61,11 @@ static inline int generic_atomic_fetch_##op(int i, atomic_t *v) \
> > > > static inline void generic_atomic_##op(int i, atomic_t *v) \
> > > > { \
> > > > unsigned long flags; \
> > > > + int c; \
> > > > \
> > > > raw_local_irq_save(flags); \
> > > > - v->counter = v->counter c_op i; \
> > > > + c = arch_atomic_read(v); \
> > > > + arch_atomic_set(v, c c_op i); \
> > > > raw_local_irq_restore(flags); \
> > > > }
> > >
> > > This and the others like it are a bit sad, it explicitly dis-allows the
> > > compiler from using memops and forces a load-store.
> > Good point, I don't know much about atomic memops but this is indeed a
> > bit sad to prevent such instructions to be used.
>
> Depends on the platform, x86,s390 etc. have then, RISC like things
> typically don't.
>
> > > The alternative is writing it like:
> > >
> > > *(volatile int *)&v->counter c_op i;
> > I wonder if it could be possible to write something like:
> >
> > *(volatile int *)&v->counter += i;
>
> Should work, but give it a try, see what it does :-)
>
I've made a quick test on godbolt[1] and I don't see a major difference
between the old version and the new version I propose. I am not very
familiar with both x86 and s390 architecture and I might have missed an
option for gcc to automagically generate "memops" instructions.
[1] https://godbolt.org/z/nrvvMs9b6
From my understanding s390 has instructions to read a value from memory
and add a value, but still needs to be written by another instruction.
x86 is not using the generic atomic code, but has its own implementation
of atomic memory operations using lock {add,...} instructions.
The goal of the proposed patch is to make the generic code more correct:
| I don't think that's true; without READ_ONCE() the compiler could (but
| is very unlikely to) read multiple times, and that could cause problems.
explained by Mark Rutland here:
https://lore.kernel.org/lkml/Y71LoCIl+IFdy9D8@FVFF77S0Q05N/
I still have some open questions:
- Maybe in SMP the generic_atomic_* functions should use READ_ONCE
instead of arch_atomic_read, since only the "once" part is what is
needed, and the atomicity is done by the cmpxchg.
- I have the feeling that in non-SMP we do not need the atomicity at all.
Thanks
-- Jules
> > I also noticed that GCC has some builtin/extension to do such things,
> > __atomic_OP_fetch and __atomic_fetch_OP, but I do not know if this
> > can be used in the kernel.
>
> On a per-architecture basis only, the C/C++ memory model does not match
> the Linux Kernel memory model so using the compiler to generate the
> atomic ops is somewhat tricky and needs architecture audits.
>
>
>
>
prev parent reply other threads:[~2023-01-30 18:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-26 17:33 [PATCH] locking/atomic: atomic: Use arch_atomic_{read,set} in generic atomic ops Jules Maselbas
2023-01-27 11:18 ` Peter Zijlstra
2023-01-27 13:49 ` Jules Maselbas
2023-01-27 14:34 ` Peter Zijlstra
2023-01-27 22:09 ` Boqun Feng
2023-01-30 12:23 ` Jonas Oberhauser
2023-01-30 18:38 ` Boqun Feng
2023-01-31 15:08 ` Jonas Oberhauser
2023-01-31 22:03 ` Boqun Feng
2023-02-01 10:51 ` Jonas Oberhauser
2023-01-30 18:15 ` Jules Maselbas [this message]
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=20230130181514.GK5952@tellis.lin.mbt.kalray.eu \
--to=jmaselbas@kalray.eu \
--cc=akiyks@gmail.com \
--cc=alex.gaynor@gmail.com \
--cc=arnd@arndb.de \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=dhowells@redhat.com \
--cc=dlustig@nvidia.com \
--cc=elver@google.com \
--cc=gary@garyguo.net \
--cc=hernan.poncedeleon@huaweicloud.com \
--cc=j.alglave@ucl.ac.uk \
--cc=joel@joelfernandes.org \
--cc=jonas.oberhauser@huaweicloud.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luc.maranget@inria.fr \
--cc=mark.rutland@arm.com \
--cc=npiggin@gmail.com \
--cc=ojeda@kernel.org \
--cc=parri.andrea@gmail.com \
--cc=paul.heidekrueger@in.tum.de \
--cc=paulmck@kernel.org \
--cc=peterz@infradead.org \
--cc=stern@rowland.harvard.edu \
--cc=wedsonaf@gmail.com \
--cc=will@kernel.org \
--cc=ysionneau@kalray.eu \
/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).