From: Will Deacon <will.deacon@arm.com>
To: linux-arch@vger.kernel.org
Cc: Waiman.Long@hp.com, peterz@infradead.org,
linux-kernel@vger.kernel.org, paulmck@linux.vnet.ibm.com,
Will Deacon <will.deacon@arm.com>
Subject: [PATCH v3 0/8] Add generic support for relaxed atomics
Date: Fri, 24 Jul 2015 15:04:33 +0100 [thread overview]
Message-ID: <1437746681-2809-1-git-send-email-will.deacon@arm.com> (raw)
Hello,
Here is version three of the patches previously posted here:
v1: https://lwn.net/Articles/650862/
v2: https://lwn.net/Articles/651293/
The series adds support for a family of relaxed atomics to the kernel.
More specifically:
- acquire/release/relaxed flavours of xchg, cmpxchg and {add,sub}_return
- atomic_read_acquire
- atomic_set_release
This came out of a separate patch series porting the (barrier-heavy)
qrwlock code to arm64. Rather than have arch-specific hooks littered
around the place, it makes more sense to define a core set of relaxed
atomics that can be used regardless of architecture.
Changes since v2 include:
- Re-organised the series so it's more amenable to getting merged
(i.e. included an extra qrwlock dependency)
- Added some comments to the qrwlock code
- Added extra comments to delimit the relaxed atomic macros
- Fixed typo in comment message
Build tested on ARM, arm64, PowerPC and x86.
All feedback welcome,
Will
--->8
Will Deacon (8):
atomics: add acquire/release/relaxed variants of some atomic
operations
asm-generic: rework atomic-long.h to avoid bulk code duplication
asm-generic: add relaxed/acquire/release variants for atomic_long_t
lockref: remove homebrew cmpxchg64_relaxed macro definition
locking/qrwlock: implement queue_write_unlock using smp_store_release
locking/qrwlock: make use of acquire/release/relaxed atomics
include/llist: use linux/atomic.h instead of asm/cmpxchg.h
ARM: atomics: define our SMP atomics in terms of _relaxed operations
arch/arm/include/asm/atomic.h | 37 ++---
arch/arm/include/asm/cmpxchg.h | 47 +-----
arch/x86/include/asm/qrwlock.h | 10 --
include/asm-generic/atomic-long.h | 263 +++++++++++--------------------
include/asm-generic/qrwlock.h | 22 +--
include/linux/atomic.h | 323 ++++++++++++++++++++++++++++++++++++++
include/linux/llist.h | 2 +-
kernel/locking/qrwlock.c | 23 ++-
lib/lockref.c | 8 -
9 files changed, 463 insertions(+), 272 deletions(-)
--
2.1.4
next reply other threads:[~2015-07-24 14:06 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-24 14:04 Will Deacon [this message]
2015-07-24 14:04 ` [PATCH v3 1/8] atomics: add acquire/release/relaxed variants of some atomic operations Will Deacon
2015-07-27 9:14 ` Peter Zijlstra
2015-07-27 10:21 ` Will Deacon
2015-07-27 16:33 ` Will Deacon
2015-07-27 17:51 ` Peter Zijlstra
2015-07-24 14:04 ` [PATCH v3 2/8] asm-generic: rework atomic-long.h to avoid bulk code duplication Will Deacon
2015-07-24 14:04 ` [PATCH v3 3/8] asm-generic: add relaxed/acquire/release variants for atomic_long_t Will Deacon
2015-07-24 14:04 ` [PATCH v3 4/8] lockref: remove homebrew cmpxchg64_relaxed macro definition Will Deacon
2015-07-24 14:04 ` [PATCH v3 5/8] locking/qrwlock: implement queue_write_unlock using smp_store_release Will Deacon
2015-07-24 14:04 ` [PATCH v3 6/8] locking/qrwlock: make use of acquire/release/relaxed atomics Will Deacon
2015-07-24 14:04 ` [PATCH v3 7/8] include/llist: use linux/atomic.h instead of asm/cmpxchg.h Will Deacon
2015-07-24 14:04 ` [PATCH v3 8/8] ARM: atomics: define our SMP atomics in terms of _relaxed operations Will Deacon
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=1437746681-2809-1-git-send-email-will.deacon@arm.com \
--to=will.deacon@arm.com \
--cc=Waiman.Long@hp.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peterz@infradead.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