Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arch: Prepare for smp_mb__{before,after}_atomic()

Since the smp_mb__{before,after}*() ops are fundamentally dependent on
how an arch can implement atomics it doesn't make sense to have 3
variants of them. They must all be the same.

Furthermore, the 3 variants suggest they're only valid for those 3
atomic ops, while we have many more where they could be applied.

So move away from
smp_mb__{before,after}_{atomic,clear}_{dec,inc,bit}() and reduce the
interface to just the two: smp_mb__{before,after}_atomic().

This patch prepares the way by introducing default implementations in
asm-generic/barrier.h that default to a full barrier and providing
__deprecated inlines for the previous 6 barriers if they're not
provided by the arch.

This should allow for a mostly painless transition (lots of deprecated
warns in the interim).

Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/n/tip-wr59327qdyi9mbzn6x937s4e@git.kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: "Chen, Gong" <gong.chen@linux.intel.com>
Cc: John Sullivan <jsrhbz@kanargh.force9.co.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mauro Carvalho Chehab <m.chehab@samsung.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Cc: "Theodore Ts'o" <tytso@mit.edu>
Cc: linux-arch@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Peter Zijlstra and committed by
Ingo Molnar
febdbfe8 2ab08ee9

+82 -14
+1 -6
include/asm-generic/atomic.h
··· 16 16 #define __ASM_GENERIC_ATOMIC_H 17 17 18 18 #include <asm/cmpxchg.h> 19 + #include <asm/barrier.h> 19 20 20 21 #ifdef CONFIG_SMP 21 22 /* Force people to define core atomics */ ··· 182 181 raw_local_irq_restore(flags); 183 182 } 184 183 #endif 185 - 186 - /* Assume that atomic operations are already serializing */ 187 - #define smp_mb__before_atomic_dec() barrier() 188 - #define smp_mb__after_atomic_dec() barrier() 189 - #define smp_mb__before_atomic_inc() barrier() 190 - #define smp_mb__after_atomic_inc() barrier() 191 184 192 185 #endif /* __KERNEL__ */ 193 186 #endif /* __ASM_GENERIC_ATOMIC_H */
+8
include/asm-generic/barrier.h
··· 62 62 #define set_mb(var, value) do { (var) = (value); mb(); } while (0) 63 63 #endif 64 64 65 + #ifndef smp_mb__before_atomic 66 + #define smp_mb__before_atomic() smp_mb() 67 + #endif 68 + 69 + #ifndef smp_mb__after_atomic 70 + #define smp_mb__after_atomic() smp_mb() 71 + #endif 72 + 65 73 #define smp_store_release(p, v) \ 66 74 do { \ 67 75 compiletime_assert_atomic_type(*p); \
+1 -8
include/asm-generic/bitops.h
··· 11 11 12 12 #include <linux/irqflags.h> 13 13 #include <linux/compiler.h> 14 - 15 - /* 16 - * clear_bit may not imply a memory barrier 17 - */ 18 - #ifndef smp_mb__before_clear_bit 19 - #define smp_mb__before_clear_bit() smp_mb() 20 - #define smp_mb__after_clear_bit() smp_mb() 21 - #endif 14 + #include <asm/barrier.h> 22 15 23 16 #include <asm-generic/bitops/__ffs.h> 24 17 #include <asm-generic/bitops/ffz.h>
+36
include/linux/atomic.h
··· 3 3 #define _LINUX_ATOMIC_H 4 4 #include <asm/atomic.h> 5 5 6 + /* 7 + * Provide __deprecated wrappers for the new interface, avoid flag day changes. 8 + * We need the ugly external functions to break header recursion hell. 9 + */ 10 + #ifndef smp_mb__before_atomic_inc 11 + static inline void __deprecated smp_mb__before_atomic_inc(void) 12 + { 13 + extern void __smp_mb__before_atomic(void); 14 + __smp_mb__before_atomic(); 15 + } 16 + #endif 17 + 18 + #ifndef smp_mb__after_atomic_inc 19 + static inline void __deprecated smp_mb__after_atomic_inc(void) 20 + { 21 + extern void __smp_mb__after_atomic(void); 22 + __smp_mb__after_atomic(); 23 + } 24 + #endif 25 + 26 + #ifndef smp_mb__before_atomic_dec 27 + static inline void __deprecated smp_mb__before_atomic_dec(void) 28 + { 29 + extern void __smp_mb__before_atomic(void); 30 + __smp_mb__before_atomic(); 31 + } 32 + #endif 33 + 34 + #ifndef smp_mb__after_atomic_dec 35 + static inline void __deprecated smp_mb__after_atomic_dec(void) 36 + { 37 + extern void __smp_mb__after_atomic(void); 38 + __smp_mb__after_atomic(); 39 + } 40 + #endif 41 + 6 42 /** 7 43 * atomic_add_unless - add unless the number is already a given value 8 44 * @v: pointer of type atomic_t
+20
include/linux/bitops.h
··· 32 32 */ 33 33 #include <asm/bitops.h> 34 34 35 + /* 36 + * Provide __deprecated wrappers for the new interface, avoid flag day changes. 37 + * We need the ugly external functions to break header recursion hell. 38 + */ 39 + #ifndef smp_mb__before_clear_bit 40 + static inline void __deprecated smp_mb__before_clear_bit(void) 41 + { 42 + extern void __smp_mb__before_atomic(void); 43 + __smp_mb__before_atomic(); 44 + } 45 + #endif 46 + 47 + #ifndef smp_mb__after_clear_bit 48 + static inline void __deprecated smp_mb__after_clear_bit(void) 49 + { 50 + extern void __smp_mb__after_atomic(void); 51 + __smp_mb__after_atomic(); 52 + } 53 + #endif 54 + 35 55 #define for_each_set_bit(bit, addr, size) \ 36 56 for ((bit) = find_first_bit((addr), (size)); \ 37 57 (bit) < (size); \
+16
kernel/sched/core.c
··· 90 90 #define CREATE_TRACE_POINTS 91 91 #include <trace/events/sched.h> 92 92 93 + #ifdef smp_mb__before_atomic 94 + void __smp_mb__before_atomic(void) 95 + { 96 + smp_mb__before_atomic(); 97 + } 98 + EXPORT_SYMBOL(__smp_mb__before_atomic); 99 + #endif 100 + 101 + #ifdef smp_mb__after_atomic 102 + void __smp_mb__after_atomic(void) 103 + { 104 + smp_mb__after_atomic(); 105 + } 106 + EXPORT_SYMBOL(__smp_mb__after_atomic); 107 + #endif 108 + 93 109 void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period) 94 110 { 95 111 unsigned long delta;