diff options
| author | Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> | 2008-02-07 03:16:21 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 11:42:32 -0500 |
| commit | df80c8c5679c4e6c72e694525d76a9f26d5f33dc (patch) | |
| tree | 84144c163426e6d4ecfaa7c50dd9cd67fa91bc64 /include/asm-parisc | |
| parent | 027bcc27d3d1a218dbf4477964a18fed78983357 (diff) | |
Add cmpxchg_local to parisc
Use the new generic cmpxchg_local (disables interrupt). Also use the generic
cmpxchg as fallback if SMP is not set.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Grant Grundler <grundler@parisc-linux.org>
Cc: Matthew Wilcox <willy@debian.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-parisc')
| -rw-r--r-- | include/asm-parisc/atomic.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/asm-parisc/atomic.h b/include/asm-parisc/atomic.h index e894ee35074b..57fcc4a5ebb4 100644 --- a/include/asm-parisc/atomic.h +++ b/include/asm-parisc/atomic.h | |||
| @@ -122,6 +122,39 @@ __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size) | |||
| 122 | (unsigned long)_n_, sizeof(*(ptr))); \ | 122 | (unsigned long)_n_, sizeof(*(ptr))); \ |
| 123 | }) | 123 | }) |
| 124 | 124 | ||
| 125 | #include <asm-generic/cmpxchg-local.h> | ||
| 126 | |||
| 127 | static inline unsigned long __cmpxchg_local(volatile void *ptr, | ||
| 128 | unsigned long old, | ||
| 129 | unsigned long new_, int size) | ||
| 130 | { | ||
| 131 | switch (size) { | ||
| 132 | #ifdef CONFIG_64BIT | ||
| 133 | case 8: return __cmpxchg_u64((unsigned long *)ptr, old, new_); | ||
| 134 | #endif | ||
| 135 | case 4: return __cmpxchg_u32(ptr, old, new_); | ||
| 136 | default: | ||
| 137 | return __cmpxchg_local_generic(ptr, old, new_, size); | ||
| 138 | } | ||
| 139 | } | ||
| 140 | |||
| 141 | /* | ||
| 142 | * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make | ||
| 143 | * them available. | ||
| 144 | */ | ||
| 145 | #define cmpxchg_local(ptr, o, n) \ | ||
| 146 | ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \ | ||
| 147 | (unsigned long)(n), sizeof(*(ptr)))) | ||
| 148 | #ifdef CONFIG_64BIT | ||
| 149 | #define cmpxchg64_local(ptr, o, n) \ | ||
| 150 | ({ \ | ||
| 151 | BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ | ||
| 152 | cmpxchg_local((ptr), (o), (n)); \ | ||
| 153 | }) | ||
| 154 | #else | ||
| 155 | #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n)) | ||
| 156 | #endif | ||
| 157 | |||
| 125 | /* Note that we need not lock read accesses - aligned word writes/reads | 158 | /* Note that we need not lock read accesses - aligned word writes/reads |
| 126 | * are atomic, so a reader never sees unconsistent values. | 159 | * are atomic, so a reader never sees unconsistent values. |
| 127 | * | 160 | * |
