diff options
author | Nick Piggin <nickpiggin@yahoo.com.au> | 2005-11-13 19:07:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-13 21:14:16 -0500 |
commit | 4a6dae6d382e9edf3ff440b819e554ed706359bc (patch) | |
tree | 2945a5095973e2ecf05b503d6deb859083045b8e /include/asm-h8300/atomic.h | |
parent | 53e86b91b7ae66d4c2757195cbd42e00d9199cf2 (diff) |
[PATCH] atomic: cmpxchg
Introduce an atomic_cmpxchg operation.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: "Paul E. McKenney" <paulmck@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-h8300/atomic.h')
-rw-r--r-- | include/asm-h8300/atomic.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-h8300/atomic.h b/include/asm-h8300/atomic.h index 7230f6507995..d50439259491 100644 --- a/include/asm-h8300/atomic.h +++ b/include/asm-h8300/atomic.h | |||
@@ -82,6 +82,19 @@ static __inline__ int atomic_dec_and_test(atomic_t *v) | |||
82 | return ret == 0; | 82 | return ret == 0; |
83 | } | 83 | } |
84 | 84 | ||
85 | static inline int atomic_cmpxchg(atomic_t *v, int old, int new) | ||
86 | { | ||
87 | int ret; | ||
88 | unsigned long flags; | ||
89 | |||
90 | local_irq_save(flags); | ||
91 | ret = v->counter; | ||
92 | if (likely(ret == old)) | ||
93 | v->counter = new; | ||
94 | local_irq_restore(flags); | ||
95 | return ret; | ||
96 | } | ||
97 | |||
85 | static __inline__ void atomic_clear_mask(unsigned long mask, unsigned long *v) | 98 | static __inline__ void atomic_clear_mask(unsigned long mask, unsigned long *v) |
86 | { | 99 | { |
87 | __asm__ __volatile__("stc ccr,r1l\n\t" | 100 | __asm__ __volatile__("stc ccr,r1l\n\t" |