]> err.no Git - linux-2.6/blobdiff - include/asm-ia64/atomic.h
[NETFILTER]: x_tables: set the protocol family in x_tables targets/matches
[linux-2.6] / include / asm-ia64 / atomic.h
index 593d3da9f3c20f6a03e96165fd8395e465497e24..d3e0dfa99e1f95e224e0c175a169cf040c7a76fc 100644 (file)
@@ -89,6 +89,17 @@ ia64_atomic64_sub (__s64 i, atomic64_t *v)
 }
 
 #define atomic_cmpxchg(v, old, new) ((int)cmpxchg(&((v)->counter), old, new))
+#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
+
+#define atomic_add_unless(v, a, u)                             \
+({                                                             \
+       int c, old;                                             \
+       c = atomic_read(v);                                     \
+       while (c != (u) && (old = atomic_cmpxchg((v), c, c + (a))) != c) \
+               c = old;                                        \
+       c != (u);                                               \
+})
+#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
 
 #define atomic_add_return(i,v)                                         \
 ({                                                                     \
@@ -182,4 +193,5 @@ atomic64_add_negative (__s64 i, atomic64_t *v)
 #define smp_mb__before_atomic_inc()    barrier()
 #define smp_mb__after_atomic_inc()     barrier()
 
+#include <asm-generic/atomic.h>
 #endif /* _ASM_IA64_ATOMIC_H */