fs/reiserfs/journal.c: change return type of dirty_one_transaction
[linux/fpc-iii.git] / arch / sh / include / asm / cmpxchg-irq.h
blob07d3e7f083891990da4c1b2fc6833c96f7d87880
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_SH_CMPXCHG_IRQ_H
3 #define __ASM_SH_CMPXCHG_IRQ_H
5 #include <linux/irqflags.h>
7 static inline unsigned long xchg_u32(volatile u32 *m, unsigned long val)
9 unsigned long flags, retval;
11 local_irq_save(flags);
12 retval = *m;
13 *m = val;
14 local_irq_restore(flags);
15 return retval;
18 static inline unsigned long xchg_u16(volatile u16 *m, unsigned long val)
20 unsigned long flags, retval;
22 local_irq_save(flags);
23 retval = *m;
24 *m = val;
25 local_irq_restore(flags);
26 return retval;
29 static inline unsigned long xchg_u8(volatile u8 *m, unsigned long val)
31 unsigned long flags, retval;
33 local_irq_save(flags);
34 retval = *m;
35 *m = val & 0xff;
36 local_irq_restore(flags);
37 return retval;
40 static inline unsigned long __cmpxchg_u32(volatile int *m, unsigned long old,
41 unsigned long new)
43 __u32 retval;
44 unsigned long flags;
46 local_irq_save(flags);
47 retval = *m;
48 if (retval == old)
49 *m = new;
50 local_irq_restore(flags); /* implies memory barrier */
51 return retval;
54 #endif /* __ASM_SH_CMPXCHG_IRQ_H */