locking/atomic: add arch_atomic_long*()
authorMark Rutland <mark.rutland@arm.com>
Tue, 13 Jul 2021 10:52:52 +0000 (11:52 +0100)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 16 Jul 2021 16:46:45 +0000 (18:46 +0200)
commit67d1b0de258ad066e1fc85d0ceaa75e107fb45bb
tree6b566ab5fc960e44ddfd558b97ac5f381440ec35
parente3d18cee258b898017b298b5b93f8134dd62aee3
locking/atomic: add arch_atomic_long*()

Now that all architectures provide arch_{atomic,atomic64}_*(), we can
build arch_atomic_long_*() atop these, which can be safely used in
noinstr code. The regular atomic_long_*() wrappers are built atop these,
as we do for {atomic,atomic64}_*() atop arch_{atomic,atomic64}_*().

We don't provide arch_* versions of the cond_read*() variants, as we
don't have arch_* versions of the underlying atomic/atomic64 functions
(nor the smp_cond_load*() helpers these are typically based on).

Note that the headers in this patch under include/linux/atomic/ are
generated by the scripts in scripts/atomic/.

Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20210713105253.7615-5-mark.rutland@arm.com
include/linux/atomic.h
include/linux/atomic/atomic-instrumented.h
include/linux/atomic/atomic-long.h
scripts/atomic/gen-atomic-instrumented.sh
scripts/atomic/gen-atomic-long.sh