mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Bradley Morgan <brads@mainlining.org>
To: paulmck@kernel.org, "Paul E. McKenney" <paulmck@kernel.org>,
	David Laight <david.laight.linux@gmail.com>
Cc: frederic@kernel.org, neeraj.upadhyay@kernel.org,
	boqun@kernel.org, joelagnelf@nvidia.com, rcu@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Arnd Bergmann <arnd@arndb.de>,
	linux-arch@vger.kernel.org, Vineet Gupta <vgupta@kernel.org>,
	linux-snps-arc@lists.infradead.org,
	Russell King <linux@armlinux.org.uk>,
	linux-arm-kernel@lists.infradead.org, Guo Ren <guoren@kernel.org>,
	linux-csky@vger.kernel.org,
	Yoshinori Sato <ysato@users.sourceforge.jp>,
	Rich Felker <dalias@libc.org>,
	John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>,
	linux-sh@vger.kernel.org, Chris Zankel <chris@zankel.net>,
	Max Filippov <jcmvbkbc@gmail.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/6] lib: Add two-byte cmpxchg emulation function
Date: Wed, 23 Sep 2026 18:02:06 +0100	[thread overview]
Message-ID: <DAF15CD4-3548-4486-9322-F31DC37FFD97@mainlining.org> (raw)
In-Reply-To: <93f2bb33-c5ec-4836-8b1b-d0ee131be5b7@paulmck-laptop>

On 23 September 2026 18:00:33 BST, "Paul E. McKenney" <paulmck@kernel.org>
wrote:
>On Wed, Sep 23, 2026 at 11:43:13AM +0100, David Laight wrote:
>> On Fri, 11 Sep 2026 19:25:34 +0000
>> Bradley Morgan <brads@mainlining.org> wrote:
>> 
>> > cmpxchg_emu_u8() emulates one-byte cmpxchg() in terms of four-byte
>> > cmpxchg() for the architectures lacking native one-byte atomics.
>> > The same architectures also lack native two-byte cmpxchg(), where
>> > such an operation is not supported and either fails to compile via
>> > BUILD_BUG() or fails to link, because the bad pointer sentinels
>> > these architectures declare are never defined.
>> > 
>> > Add cmpxchg_emu_u16(), the two-byte sibling. It reads the enclosing
>> > word with READ_ONCE(), splices the two target bytes through a union
>> > and loops on cmpxchg() of the full word until the compare succeeds.
>> > Like cmpxchg_emu_u8() it is fully ordered.
>> > 
>> > The Kconfig symbol gating this file is renamed from
>> > ARCH_NEED_CMPXCHG_1_EMU to ARCH_NEED_CMPXCHG_1_2_EMU, as it now
>> > selects both the one-byte and the two-byte emulation.
>> > 
>> > Suggested-by: Paul E. McKenney <paulmck@kernel.org>
>> > Signed-off-by: Bradley Morgan <brads@mainlining.org>
>> > ---
>> >  arch/Kconfig                |  2 +-
>> >  arch/arc/Kconfig            |  2 +-
>> >  arch/arm/Kconfig            |  2 +-
>> >  arch/csky/Kconfig           |  2 +-
>> >  arch/sh/Kconfig             |  2 +-
>> >  arch/xtensa/Kconfig         |  2 +-
>> >  include/linux/cmpxchg-emu.h |  1 +
>> >  lib/Makefile                |  2 +-
>> >  lib/cmpxchg-emu.c           | 35 ++++++++++++++++++++++++++++++++---
>> >  9 files changed, 40 insertions(+), 10 deletions(-)
>> > 
>> > diff --git a/arch/Kconfig b/arch/Kconfig
>> > index 3bb2e568f5b1..d56064797e09 100644
>> > --- a/arch/Kconfig
>> > +++ b/arch/Kconfig
>> > @@ -1817,7 +1817,7 @@ config CC_HAS_SANE_FUNCTION_ALIGNMENT
>> >  	# strict alignment always, even with -falign-functions.
>> >  	def_bool CC_HAS_MIN_FUNCTION_ALIGNMENT || CC_IS_CLANG
>> >  
>> > -config ARCH_NEED_CMPXCHG_1_EMU
>> > +config ARCH_NEED_CMPXCHG_1_2_EMU
>> 
>> Is it actually worth the churn of changing the name?
>> Maybe just a comment that say it adds both 1 and 2 byte emulation?
>
>The churn is only a few lines of code, and the potential confusion from
>the name would be forever.  I agree that if we were stuck with the old
>name, the comment would help, but why not just rip the bandage off and
>be done with it?  ;-)

true.

>
>							Thanx, Paul

--- Thanks!
"I'm not a very positive person" - Linus torvalds

  reply	other threads:[~2026-09-23 17:04 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-11 19:25 [PATCH 0/6] Add two-byte cmpxchg emulation and wire it into the architectures Bradley Morgan
2026-09-11 19:25 ` [PATCH 1/6] lib: Add two-byte cmpxchg emulation function Bradley Morgan
2026-09-11 22:10   ` David Laight
2026-09-11 22:13     ` Bradley Morgan
2026-09-11 23:09     ` Paul E. McKenney
2026-09-12  9:30       ` David Laight
2026-09-12 10:29         ` Bradley Morgan
2026-09-12 18:58         ` Paul E. McKenney
2026-09-12 21:11           ` Bradley Morgan
2026-09-23 10:43   ` David Laight
2026-09-23 17:00     ` Paul E. McKenney
2026-09-23 17:02       ` Bradley Morgan [this message]
2026-09-11 19:25 ` [PATCH 2/6] ARC: Emulate two-byte cmpxchg Bradley Morgan
2026-09-11 19:25 ` [PATCH 3/6] ARM: Emulate two-byte cmpxchg on ARMv6 Bradley Morgan
2026-09-11 19:25 ` [PATCH 4/6] csky: Emulate two-byte cmpxchg Bradley Morgan
2026-09-11 19:25 ` [PATCH 5/6] sh: " Bradley Morgan
2026-09-16 19:16   ` John Paul Adrian Glaubitz
2026-09-16 19:27     ` Bradley Morgan
2026-09-16 21:01     ` Paul E. McKenney
2026-09-16 21:03       ` Bradley Morgan
2026-09-22 23:06     ` Paul E. McKenney
2026-09-11 19:25 ` [PATCH 6/6] xtensa: " Bradley Morgan
2026-09-11 20:17 ` [PATCH 0/6] Add two-byte cmpxchg emulation and wire it into the architectures Arnd Bergmann
2026-09-11 20:20   ` Bradley Morgan

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=DAF15CD4-3548-4486-9322-F31DC37FFD97@mainlining.org \
    --to=brads@mainlining.org \
    --cc=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=boqun@kernel.org \
    --cc=chris@zankel.net \
    --cc=dalias@libc.org \
    --cc=david.laight.linux@gmail.com \
    --cc=frederic@kernel.org \
    --cc=glaubitz@physik.fu-berlin.de \
    --cc=guoren@kernel.org \
    --cc=jcmvbkbc@gmail.com \
    --cc=joelagnelf@nvidia.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-csky@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=linux-snps-arc@lists.infradead.org \
    --cc=linux@armlinux.org.uk \
    --cc=neeraj.upadhyay@kernel.org \
    --cc=paulmck@kernel.org \
    --cc=rcu@vger.kernel.org \
    --cc=vgupta@kernel.org \
    --cc=ysato@users.sourceforge.jp \
    /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

all inboxes | Powered by JetHome®