mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
148817ba09
The majority of architectures implement ext2 atomic bitops as test_and_{set,clear}_bit() without spinlock. This adds this type of generic implementation in ext2-atomic-setbit.h and use it wherever possible. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Suggested-by: Andreas Dilger <adilger@dilger.ca> Suggested-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
12 lines
364 B
C
12 lines
364 B
C
#ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
|
|
#define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
|
|
|
|
/*
|
|
* Atomic bitops based version of ext2 atomic bitops
|
|
*/
|
|
|
|
#define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr)
|
|
#define ext2_clear_bit_atomic(l, nr, addr) test_and_clear_bit_le(nr, addr)
|
|
|
|
#endif /* _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_ */
|