From: Peter Zijlstra Date: Tue, 2 Jun 2009 15:01:58 +0000 (+0200) Subject: x86: Fix atomic_long_xchg() on 64bit X-Git-Tag: v2.6.31-rc1~383^2~127 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=53e111a730ea8b002d57dd226098c12789993329;p=karo-tx-linux.git x86: Fix atomic_long_xchg() on 64bit Apparently I'm the first to use it :-) Signed-off-by: Peter Zijlstra LKML-Reference: Signed-off-by: Ingo Molnar --- diff --git a/include/asm-generic/atomic.h b/include/asm-generic/atomic.h index 3673a13b6703..81d3be459efb 100644 --- a/include/asm-generic/atomic.h +++ b/include/asm-generic/atomic.h @@ -134,7 +134,7 @@ static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u) #define atomic_long_cmpxchg(l, old, new) \ (atomic64_cmpxchg((atomic64_t *)(l), (old), (new))) #define atomic_long_xchg(v, new) \ - (atomic64_xchg((atomic64_t *)(l), (new))) + (atomic64_xchg((atomic64_t *)(v), (new))) #else /* BITS_PER_LONG == 64 */