Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-generic / bitops / non-atomic.h
blob697cc2b7e0f0d90189aa3e1e9d6d8c8c44bb42be
1 #ifndef _ASM_GENERIC_BITOPS_NON_ATOMIC_H_
2 #define _ASM_GENERIC_BITOPS_NON_ATOMIC_H_
4 #include <asm/types.h>
6 /**
7 * __set_bit - Set a bit in memory
8 * @nr: the bit to set
9 * @addr: the address to start counting from
11 * Unlike set_bit(), this function is non-atomic and may be reordered.
12 * If it's called on the same region of memory simultaneously, the effect
13 * may be that only one operation succeeds.
15 static inline void __set_bit(int nr, volatile unsigned long *addr)
17 unsigned long mask = BIT_MASK(nr);
18 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
20 *p |= mask;
23 static inline void __clear_bit(int nr, volatile unsigned long *addr)
25 unsigned long mask = BIT_MASK(nr);
26 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
28 *p &= ~mask;
31 /**
32 * __change_bit - Toggle a bit in memory
33 * @nr: the bit to change
34 * @addr: the address to start counting from
36 * Unlike change_bit(), this function is non-atomic and may be reordered.
37 * If it's called on the same region of memory simultaneously, the effect
38 * may be that only one operation succeeds.
40 static inline void __change_bit(int nr, volatile unsigned long *addr)
42 unsigned long mask = BIT_MASK(nr);
43 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
45 *p ^= mask;
48 /**
49 * __test_and_set_bit - Set a bit and return its old value
50 * @nr: Bit to set
51 * @addr: Address to count from
53 * This operation is non-atomic and can be reordered.
54 * If two examples of this operation race, one can appear to succeed
55 * but actually fail. You must protect multiple accesses with a lock.
57 static inline int __test_and_set_bit(int nr, volatile unsigned long *addr)
59 unsigned long mask = BIT_MASK(nr);
60 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
61 unsigned long old = *p;
63 *p = old | mask;
64 return (old & mask) != 0;
67 /**
68 * __test_and_clear_bit - Clear a bit and return its old value
69 * @nr: Bit to clear
70 * @addr: Address to count from
72 * This operation is non-atomic and can be reordered.
73 * If two examples of this operation race, one can appear to succeed
74 * but actually fail. You must protect multiple accesses with a lock.
76 static inline int __test_and_clear_bit(int nr, volatile unsigned long *addr)
78 unsigned long mask = BIT_MASK(nr);
79 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
80 unsigned long old = *p;
82 *p = old & ~mask;
83 return (old & mask) != 0;
86 /* WARNING: non atomic and it can be reordered! */
87 static inline int __test_and_change_bit(int nr,
88 volatile unsigned long *addr)
90 unsigned long mask = BIT_MASK(nr);
91 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
92 unsigned long old = *p;
94 *p = old ^ mask;
95 return (old & mask) != 0;
98 /**
99 * test_bit - Determine whether a bit is set
100 * @nr: bit number to test
101 * @addr: Address to start counting from
103 static inline int test_bit(int nr, const volatile unsigned long *addr)
105 return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
108 #endif /* _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ */