arch,arm64: Convert smp_mb__*()
authorPeter Zijlstra <[email protected]>
Thu, 13 Mar 2014 18:00:37 +0000 (19:00 +0100)
committerIngo Molnar <[email protected]>
Fri, 18 Apr 2014 09:40:33 +0000 (11:40 +0200)
AARGH64 uses ll/sc primitives that do not imply any barriers for the
normal atomics, therefore smp_mb__{before,after} should be a full
barrier.

Since AARGH64 doesn't use asm-generic/barrier.h, add the required
definitions to its asm/barrier.h.

Signed-off-by: Peter Zijlstra <[email protected]>
Acked-by: Paul E. McKenney <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Cc: Catalin Marinas <[email protected]>
Cc: Chen Gang <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Russell King <[email protected]>
Cc: Will Deacon <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/arm64/include/asm/atomic.h
arch/arm64/include/asm/barrier.h
arch/arm64/include/asm/bitops.h

index 0237f0867e377a1acc4f3840e1a9307cff6a3fe8..57e8cb49824c4702da76cf9bfbb324b8b87e8cd3 100644 (file)
@@ -152,11 +152,6 @@ static inline int __atomic_add_unless(atomic_t *v, int a, int u)
 
 #define atomic_add_negative(i,v) (atomic_add_return(i, v) < 0)
 
-#define smp_mb__before_atomic_dec()    smp_mb()
-#define smp_mb__after_atomic_dec()     smp_mb()
-#define smp_mb__before_atomic_inc()    smp_mb()
-#define smp_mb__after_atomic_inc()     smp_mb()
-
 /*
  * 64-bit atomic operations.
  */
index 66eb7648043bc9c1ba6383b0e2187a74c8dc8d5c..48b9e704af7c10a05abac5b23214be6b4e73fdd9 100644 (file)
@@ -98,6 +98,9 @@ do {                                                                  \
 #define set_mb(var, value)     do { var = value; smp_mb(); } while (0)
 #define nop()          asm volatile("nop");
 
+#define smp_mb__before_atomic()        smp_mb()
+#define smp_mb__after_atomic() smp_mb()
+
 #endif /* __ASSEMBLY__ */
 
 #endif /* __ASM_BARRIER_H */
index aa5b59d6ba43a1e2e893923ca0bf57acc731909c..9c19594ce7cb9932ede27894fb81b3467a43aa58 100644 (file)
 #define __ASM_BITOPS_H
 
 #include <linux/compiler.h>
-
 #include <asm/barrier.h>
 
-/*
- * clear_bit may not imply a memory barrier
- */
-#ifndef smp_mb__before_clear_bit
-#define smp_mb__before_clear_bit()     smp_mb()
-#define smp_mb__after_clear_bit()      smp_mb()
-#endif
-
 #ifndef _LINUX_BITOPS_H
 #error only <linux/bitops.h> can be included directly
 #endif