]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
atomic: Allow atomic_inc_not_zero to be overridden
authorAnton Blanchard <anton@samba.org>
Wed, 29 Feb 2012 21:09:53 +0000 (21:09 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 7 Mar 2012 06:06:08 +0000 (17:06 +1100)
We want to implement a ppc64 specific version of atomic_inc_not_zero
so wrap it in an ifdef to allow it to be overridden.

Signed-off-by: Anton Blanchard <anton@samba.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
include/linux/atomic.h

index 42b77b5446d2b44d983d68c0929de5dabac6afa2..70cfcb2d63c49d5b5b72f6a5f42455060d89035d 100644 (file)
@@ -24,7 +24,9 @@ static inline int atomic_add_unless(atomic_t *v, int a, int u)
  * Atomically increments @v by 1, so long as @v is non-zero.
  * Returns non-zero if @v was non-zero, and zero otherwise.
  */
+#ifndef atomic_inc_not_zero
 #define atomic_inc_not_zero(v)         atomic_add_unless((v), 1, 0)
+#endif
 
 /**
  * atomic_inc_not_zero_hint - increment if not null