1 #ifndef _ASM_GENERIC_BITOPS_LOCK_H_
2 #define _ASM_GENERIC_BITOPS_LOCK_H_
5 * test_and_set_bit_lock - Set a bit and return its old value, for lock
7 * @addr: Address to count from
9 * This operation is atomic and provides acquire barrier semantics.
10 * It can be used to implement bit locks.
12 #define test_and_set_bit_lock(nr, addr) test_and_set_bit(nr, addr)
15 * clear_bit_unlock - Clear a bit in memory, for unlock
17 * @addr: the address to start counting from
19 * This operation is atomic and provides release barrier semantics.
21 #define clear_bit_unlock(nr, addr) \
23 smp_mb__before_clear_bit(); \
24 clear_bit(nr, addr); \
28 * __clear_bit_unlock - Clear a bit in memory, for unlock
30 * @addr: the address to start counting from
32 * This operation is like clear_bit_unlock, however it is not atomic.
33 * It does provide release barrier semantics so it can be used to unlock
34 * a bit lock, however it would only be used if no other CPU can modify
35 * any bits in the memory until the lock is released (a good example is
36 * if the bit lock itself protects access to the other bits in the word).
38 #define __clear_bit_unlock(nr, addr) \
41 __clear_bit(nr, addr); \
44 #endif /* _ASM_GENERIC_BITOPS_LOCK_H_ */