1 /* Atomic operations usable in machine independent code */
2 #ifndef _LINUX_ATOMIC_H
3 #define _LINUX_ATOMIC_H
4 #include <asm/atomic.h>
7 * atomic_add_unless - add unless the number is already a given value
8 * @v: pointer of type atomic_t
9 * @a: the amount to add to v...
10 * @u: ...unless v is equal to u.
12 * Atomically adds @a to @v, so long as @v was not already @u.
13 * Returns non-zero if @v was not @u, and zero otherwise.
15 static inline int atomic_add_unless(atomic_t *v, int a, int u)
17 return __atomic_add_unless(v, a, u) != u;
21 * atomic_inc_not_zero - increment unless the number is zero
22 * @v: pointer of type atomic_t
24 * Atomically increments @v by 1, so long as @v is non-zero.
25 * Returns non-zero if @v was non-zero, and zero otherwise.
27 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
30 * atomic_inc_not_zero_hint - increment if not null
31 * @v: pointer of type atomic_t
32 * @hint: probable value of the atomic before the increment
34 * This version of atomic_inc_not_zero() gives a hint of probable
35 * value of the atomic. This helps processor to not read the memory
36 * before doing the atomic read/modify/write cycle, lowering
37 * number of bus transactions on some arches.
39 * Returns: 0 if increment was not done, 1 otherwise.
41 #ifndef atomic_inc_not_zero_hint
42 static inline int atomic_inc_not_zero_hint(atomic_t *v, int hint)
46 /* sanity test, should be removed by compiler if hint is a constant */
48 return atomic_inc_not_zero(v);
51 val = atomic_cmpxchg(v, c, c + 1);
61 #ifndef atomic_inc_unless_negative
62 static inline int atomic_inc_unless_negative(atomic_t *p)
65 for (v = 0; v >= 0; v = v1) {
66 v1 = atomic_cmpxchg(p, v, v + 1);
74 #ifndef atomic_dec_unless_positive
75 static inline int atomic_dec_unless_positive(atomic_t *p)
78 for (v = 0; v <= 0; v = v1) {
79 v1 = atomic_cmpxchg(p, v, v - 1);
87 #ifndef CONFIG_ARCH_HAS_ATOMIC_OR
88 static inline void atomic_or(int i, atomic_t *v)
96 } while (atomic_cmpxchg(v, old, new) != old);
98 #endif /* #ifndef CONFIG_ARCH_HAS_ATOMIC_OR */
100 #include <asm-generic/atomic-long.h>
101 #ifdef CONFIG_GENERIC_ATOMIC64
102 #include <asm-generic/atomic64.h>
104 #endif /* _LINUX_ATOMIC_H */