treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / powerpc / include / asm / local.h
blobbc4bd19b7fc235b80ec1132f44409b6fe1057975
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ARCH_POWERPC_LOCAL_H
3 #define _ARCH_POWERPC_LOCAL_H
5 #ifdef CONFIG_PPC_BOOK3S_64
7 #include <linux/percpu.h>
8 #include <linux/atomic.h>
9 #include <linux/irqflags.h>
11 #include <asm/hw_irq.h>
13 typedef struct
15 long v;
16 } local_t;
18 #define LOCAL_INIT(i) { (i) }
20 static __inline__ long local_read(const local_t *l)
22 return READ_ONCE(l->v);
25 static __inline__ void local_set(local_t *l, long i)
27 WRITE_ONCE(l->v, i);
30 #define LOCAL_OP(op, c_op) \
31 static __inline__ void local_##op(long i, local_t *l) \
32 { \
33 unsigned long flags; \
35 powerpc_local_irq_pmu_save(flags); \
36 l->v c_op i; \
37 powerpc_local_irq_pmu_restore(flags); \
40 #define LOCAL_OP_RETURN(op, c_op) \
41 static __inline__ long local_##op##_return(long a, local_t *l) \
42 { \
43 long t; \
44 unsigned long flags; \
46 powerpc_local_irq_pmu_save(flags); \
47 t = (l->v c_op a); \
48 powerpc_local_irq_pmu_restore(flags); \
50 return t; \
53 #define LOCAL_OPS(op, c_op) \
54 LOCAL_OP(op, c_op) \
55 LOCAL_OP_RETURN(op, c_op)
57 LOCAL_OPS(add, +=)
58 LOCAL_OPS(sub, -=)
60 #define local_add_negative(a, l) (local_add_return((a), (l)) < 0)
61 #define local_inc_return(l) local_add_return(1LL, l)
62 #define local_inc(l) local_inc_return(l)
65 * local_inc_and_test - increment and test
66 * @l: pointer of type local_t
68 * Atomically increments @l by 1
69 * and returns true if the result is zero, or false for all
70 * other cases.
72 #define local_inc_and_test(l) (local_inc_return(l) == 0)
74 #define local_dec_return(l) local_sub_return(1LL, l)
75 #define local_dec(l) local_dec_return(l)
76 #define local_sub_and_test(a, l) (local_sub_return((a), (l)) == 0)
77 #define local_dec_and_test(l) (local_dec_return((l)) == 0)
79 static __inline__ long local_cmpxchg(local_t *l, long o, long n)
81 long t;
82 unsigned long flags;
84 powerpc_local_irq_pmu_save(flags);
85 t = l->v;
86 if (t == o)
87 l->v = n;
88 powerpc_local_irq_pmu_restore(flags);
90 return t;
93 static __inline__ long local_xchg(local_t *l, long n)
95 long t;
96 unsigned long flags;
98 powerpc_local_irq_pmu_save(flags);
99 t = l->v;
100 l->v = n;
101 powerpc_local_irq_pmu_restore(flags);
103 return t;
107 * local_add_unless - add unless the number is a given value
108 * @l: pointer of type local_t
109 * @a: the amount to add to v...
110 * @u: ...unless v is equal to u.
112 * Atomically adds @a to @l, so long as it was not @u.
113 * Returns non-zero if @l was not @u, and zero otherwise.
115 static __inline__ int local_add_unless(local_t *l, long a, long u)
117 unsigned long flags;
118 int ret = 0;
120 powerpc_local_irq_pmu_save(flags);
121 if (l->v != u) {
122 l->v += a;
123 ret = 1;
125 powerpc_local_irq_pmu_restore(flags);
127 return ret;
130 #define local_inc_not_zero(l) local_add_unless((l), 1, 0)
132 /* Use these for per-cpu local_t variables: on some archs they are
133 * much more efficient than these naive implementations. Note they take
134 * a variable, not an address.
137 #define __local_inc(l) ((l)->v++)
138 #define __local_dec(l) ((l)->v++)
139 #define __local_add(i,l) ((l)->v+=(i))
140 #define __local_sub(i,l) ((l)->v-=(i))
142 #else /* CONFIG_PPC64 */
144 #include <asm-generic/local.h>
146 #endif /* CONFIG_PPC64 */
148 #endif /* _ARCH_POWERPC_LOCAL_H */