aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/atomic/fallbacks/inc_and_test
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/inc_and_test
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/inc_and_test')
-rwxr-xr-xscripts/atomic/fallbacks/inc_and_test15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/atomic/fallbacks/inc_and_test b/scripts/atomic/fallbacks/inc_and_test
new file mode 100755
index 000000000000..4e2068869f7e
--- /dev/null
+++ b/scripts/atomic/fallbacks/inc_and_test
@@ -0,0 +1,15 @@
+cat <<EOF
+/**
+ * ${atomic}_inc_and_test - increment and test
+ * @v: pointer of type ${atomic}_t
+ *
+ * Atomically increments @v by 1
+ * and returns true if the result is zero, or false for all
+ * other cases.
+ */
+static inline bool
+${atomic}_inc_and_test(${atomic}_t *v)
+{
+ return ${atomic}_inc_return(v) == 0;
+}
+EOF