diff options
author | Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> | 2007-05-08 03:34:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:19 -0400 |
commit | e12f644bd085ce64a6ecca4e466fcdc2c2df4c0f (patch) | |
tree | fef1105bc80332945ca73fa77b3aae27e9b92bdc /include/asm-mips | |
parent | 819791319becde19e32788a34cc2556aef9f9e6d (diff) |
atomic.h: add atomic64 cmpxchg, xchg and add_unless to mips
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/atomic.h | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/include/asm-mips/atomic.h b/include/asm-mips/atomic.h index 1ac50b6c47ad..6423ffa195a4 100644 --- a/include/asm-mips/atomic.h +++ b/include/asm-mips/atomic.h | |||
@@ -306,8 +306,8 @@ static __inline__ int atomic_sub_if_positive(int i, atomic_t * v) | |||
306 | return result; | 306 | return result; |
307 | } | 307 | } |
308 | 308 | ||
309 | #define atomic_cmpxchg(v, o, n) ((int)cmpxchg(&((v)->counter), (o), (n))) | 309 | #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n))) |
310 | #define atomic_xchg(v, new) (xchg(&((v)->counter), new)) | 310 | #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) |
311 | 311 | ||
312 | /** | 312 | /** |
313 | * atomic_add_unless - add unless the number is a given value | 313 | * atomic_add_unless - add unless the number is a given value |
@@ -320,7 +320,7 @@ static __inline__ int atomic_sub_if_positive(int i, atomic_t * v) | |||
320 | */ | 320 | */ |
321 | #define atomic_add_unless(v, a, u) \ | 321 | #define atomic_add_unless(v, a, u) \ |
322 | ({ \ | 322 | ({ \ |
323 | int c, old; \ | 323 | __typeof__((v)->counter) c, old; \ |
324 | c = atomic_read(v); \ | 324 | c = atomic_read(v); \ |
325 | while (c != (u) && (old = atomic_cmpxchg((v), c, c + (a))) != c) \ | 325 | while (c != (u) && (old = atomic_cmpxchg((v), c, c + (a))) != c) \ |
326 | c = old; \ | 326 | c = old; \ |
@@ -681,6 +681,29 @@ static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v) | |||
681 | return result; | 681 | return result; |
682 | } | 682 | } |
683 | 683 | ||
684 | #define atomic64_cmpxchg(v, o, n) \ | ||
685 | (((__typeof__((v)->counter)))cmpxchg(&((v)->counter), (o), (n))) | ||
686 | #define atomic64_xchg(v, new) (xchg(&((v)->counter), (new))) | ||
687 | |||
688 | /** | ||
689 | * atomic64_add_unless - add unless the number is a given value | ||
690 | * @v: pointer of type atomic64_t | ||
691 | * @a: the amount to add to v... | ||
692 | * @u: ...unless v is equal to u. | ||
693 | * | ||
694 | * Atomically adds @a to @v, so long as it was not @u. | ||
695 | * Returns non-zero if @v was not @u, and zero otherwise. | ||
696 | */ | ||
697 | #define atomic64_add_unless(v, a, u) \ | ||
698 | ({ \ | ||
699 | __typeof__((v)->counter) c, old; \ | ||
700 | c = atomic_read(v); \ | ||
701 | while (c != (u) && (old = atomic64_cmpxchg((v), c, c + (a))) != c) \ | ||
702 | c = old; \ | ||
703 | c != (u); \ | ||
704 | }) | ||
705 | #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0) | ||
706 | |||
684 | #define atomic64_dec_return(v) atomic64_sub_return(1,(v)) | 707 | #define atomic64_dec_return(v) atomic64_sub_return(1,(v)) |
685 | #define atomic64_inc_return(v) atomic64_add_return(1,(v)) | 708 | #define atomic64_inc_return(v) atomic64_add_return(1,(v)) |
686 | 709 | ||