mirror of https://gitee.com/openkylin/linux.git
nilfs2: use little-endian bitops
As a preparation for removing ext2 non-atomic bit operations from asm/bitops.h. This converts ext2 non-atomic bit operations to little-endian bit operations. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Acked-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c4354d0d68
commit
a49ebbabb0
|
@ -74,7 +74,7 @@ int nilfs_palloc_freev(struct inode *, __u64 *, size_t);
|
|||
|
||||
#define nilfs_set_bit_atomic ext2_set_bit_atomic
|
||||
#define nilfs_clear_bit_atomic ext2_clear_bit_atomic
|
||||
#define nilfs_find_next_zero_bit ext2_find_next_zero_bit
|
||||
#define nilfs_find_next_zero_bit find_next_zero_bit_le
|
||||
|
||||
/*
|
||||
* persistent object allocator cache
|
||||
|
|
Loading…
Reference in New Issue