aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/atomic/fallbacks/try_cmpxchg
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2019-02-11 14:27:05 +0100
committerIngo Molnar <mingo@kernel.org>2019-02-11 14:27:05 +0100
commit41b8687191cfd0326db03b0e82fb09d8c98ca641 (patch)
treea214babca0a181c67c25a615d608465a5f92f8c4 /scripts/atomic/fallbacks/try_cmpxchg
parentfutex: Convert futex_pi_state.refcount to refcount_t (diff)
parentlocking/atomics: Fix out-of-tree build (diff)
downloadlinux-dev-41b8687191cfd0326db03b0e82fb09d8c98ca641.tar.xz
linux-dev-41b8687191cfd0326db03b0e82fb09d8c98ca641.zip
Merge branch 'locking/atomics' into locking/core, to pick up WIP commits
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'scripts/atomic/fallbacks/try_cmpxchg')
-rwxr-xr-xscripts/atomic/fallbacks/try_cmpxchg11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/atomic/fallbacks/try_cmpxchg b/scripts/atomic/fallbacks/try_cmpxchg
new file mode 100755
index 000000000000..4ed85e2f5378
--- /dev/null
+++ b/scripts/atomic/fallbacks/try_cmpxchg
@@ -0,0 +1,11 @@
+cat <<EOF
+static inline bool
+${atomic}_try_cmpxchg${order}(${atomic}_t *v, ${int} *old, ${int} new)
+{
+ ${int} r, o = *old;
+ r = ${atomic}_cmpxchg${order}(v, o, new);
+ if (unlikely(r != o))
+ *old = r;
+ return likely(r == o);
+}
+EOF