1 // SPDX-License-Identifier: GPL-2.0
3 * bitops.c: atomic operations which got too long to be inlined all over
10 #include <linux/kernel.h>
11 #include <linux/spinlock.h>
12 #include <linux/atomic.h>
15 arch_spinlock_t __atomic_hash[ATOMIC_HASH_SIZE] __lock_aligned = {
16 [0 ... (ATOMIC_HASH_SIZE-1)] = __ARCH_SPIN_LOCK_UNLOCKED
21 unsigned long notrace __xchg64(unsigned long x, volatile unsigned long *ptr)
23 unsigned long temp, flags;
25 _atomic_spin_lock_irqsave(ptr, flags);
28 _atomic_spin_unlock_irqrestore(ptr, flags);
33 unsigned long notrace __xchg32(int x, volatile int *ptr)
38 _atomic_spin_lock_irqsave(ptr, flags);
39 temp = (long) *ptr; /* XXX - sign extension wanted? */
41 _atomic_spin_unlock_irqrestore(ptr, flags);
42 return (unsigned long)temp;
46 unsigned long notrace __xchg8(char x, volatile char *ptr)
51 _atomic_spin_lock_irqsave(ptr, flags);
52 temp = (long) *ptr; /* XXX - sign extension wanted? */
54 _atomic_spin_unlock_irqrestore(ptr, flags);
55 return (unsigned long)temp;
60 T notrace __cmpxchg_##T(volatile T *ptr, T old, T new) \
62 unsigned long flags; \
65 _atomic_spin_lock_irqsave(ptr, flags); \
66 if ((prev = *ptr) == old) \
68 _atomic_spin_unlock_irqrestore(ptr, flags); \