diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-03 15:57:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-03 15:57:53 -0400 |
commit | 776edb59317ada867dfcddde40b55648beeb0078 (patch) | |
tree | f6a6136374642323cfefd7d6399ea429f9018ade /arch/powerpc/include | |
parent | 59a3d4c3631e553357b7305dc09db1990aa6757c (diff) | |
parent | 3cf2f34e1a3d4d5ff209d087925cf950e52f4805 (diff) |
Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into next
Pull core locking updates from Ingo Molnar:
"The main changes in this cycle were:
- reduced/streamlined smp_mb__*() interface that allows more usecases
and makes the existing ones less buggy, especially in rarer
architectures
- add rwsem implementation comments
- bump up lockdep limits"
* 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (33 commits)
rwsem: Add comments to explain the meaning of the rwsem's count field
lockdep: Increase static allocations
arch: Mass conversion of smp_mb__*()
arch,doc: Convert smp_mb__*()
arch,xtensa: Convert smp_mb__*()
arch,x86: Convert smp_mb__*()
arch,tile: Convert smp_mb__*()
arch,sparc: Convert smp_mb__*()
arch,sh: Convert smp_mb__*()
arch,score: Convert smp_mb__*()
arch,s390: Convert smp_mb__*()
arch,powerpc: Convert smp_mb__*()
arch,parisc: Convert smp_mb__*()
arch,openrisc: Convert smp_mb__*()
arch,mn10300: Convert smp_mb__*()
arch,mips: Convert smp_mb__*()
arch,metag: Convert smp_mb__*()
arch,m68k: Convert smp_mb__*()
arch,m32r: Convert smp_mb__*()
arch,ia64: Convert smp_mb__*()
...
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/atomic.h | 6 | ||||
-rw-r--r-- | arch/powerpc/include/asm/barrier.h | 3 | ||||
-rw-r--r-- | arch/powerpc/include/asm/bitops.h | 6 |
3 files changed, 5 insertions, 10 deletions
diff --git a/arch/powerpc/include/asm/atomic.h b/arch/powerpc/include/asm/atomic.h index e3b1d41c89be..28992d012926 100644 --- a/arch/powerpc/include/asm/atomic.h +++ b/arch/powerpc/include/asm/atomic.h | |||
@@ -8,6 +8,7 @@ | |||
8 | #ifdef __KERNEL__ | 8 | #ifdef __KERNEL__ |
9 | #include <linux/types.h> | 9 | #include <linux/types.h> |
10 | #include <asm/cmpxchg.h> | 10 | #include <asm/cmpxchg.h> |
11 | #include <asm/barrier.h> | ||
11 | 12 | ||
12 | #define ATOMIC_INIT(i) { (i) } | 13 | #define ATOMIC_INIT(i) { (i) } |
13 | 14 | ||
@@ -270,11 +271,6 @@ static __inline__ int atomic_dec_if_positive(atomic_t *v) | |||
270 | } | 271 | } |
271 | #define atomic_dec_if_positive atomic_dec_if_positive | 272 | #define atomic_dec_if_positive atomic_dec_if_positive |
272 | 273 | ||
273 | #define smp_mb__before_atomic_dec() smp_mb() | ||
274 | #define smp_mb__after_atomic_dec() smp_mb() | ||
275 | #define smp_mb__before_atomic_inc() smp_mb() | ||
276 | #define smp_mb__after_atomic_inc() smp_mb() | ||
277 | |||
278 | #ifdef __powerpc64__ | 274 | #ifdef __powerpc64__ |
279 | 275 | ||
280 | #define ATOMIC64_INIT(i) { (i) } | 276 | #define ATOMIC64_INIT(i) { (i) } |
diff --git a/arch/powerpc/include/asm/barrier.h b/arch/powerpc/include/asm/barrier.h index f89da808ce31..bab79a110c7b 100644 --- a/arch/powerpc/include/asm/barrier.h +++ b/arch/powerpc/include/asm/barrier.h | |||
@@ -84,4 +84,7 @@ do { \ | |||
84 | ___p1; \ | 84 | ___p1; \ |
85 | }) | 85 | }) |
86 | 86 | ||
87 | #define smp_mb__before_atomic() smp_mb() | ||
88 | #define smp_mb__after_atomic() smp_mb() | ||
89 | |||
87 | #endif /* _ASM_POWERPC_BARRIER_H */ | 90 | #endif /* _ASM_POWERPC_BARRIER_H */ |
diff --git a/arch/powerpc/include/asm/bitops.h b/arch/powerpc/include/asm/bitops.h index a5e9a7d494d8..bd3bd573d0ae 100644 --- a/arch/powerpc/include/asm/bitops.h +++ b/arch/powerpc/include/asm/bitops.h | |||
@@ -51,11 +51,7 @@ | |||
51 | #define PPC_BIT(bit) (1UL << PPC_BITLSHIFT(bit)) | 51 | #define PPC_BIT(bit) (1UL << PPC_BITLSHIFT(bit)) |
52 | #define PPC_BITMASK(bs, be) ((PPC_BIT(bs) - PPC_BIT(be)) | PPC_BIT(bs)) | 52 | #define PPC_BITMASK(bs, be) ((PPC_BIT(bs) - PPC_BIT(be)) | PPC_BIT(bs)) |
53 | 53 | ||
54 | /* | 54 | #include <asm/barrier.h> |
55 | * clear_bit doesn't imply a memory barrier | ||
56 | */ | ||
57 | #define smp_mb__before_clear_bit() smp_mb() | ||
58 | #define smp_mb__after_clear_bit() smp_mb() | ||
59 | 55 | ||
60 | /* Macro for generating the ***_bits() functions */ | 56 | /* Macro for generating the ***_bits() functions */ |
61 | #define DEFINE_BITOP(fn, op, prefix) \ | 57 | #define DEFINE_BITOP(fn, op, prefix) \ |