]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ext3: use little-endian bitops
authorAkinobu Mita <akinobu.mita@gmail.com>
Wed, 23 Mar 2011 23:42:06 +0000 (16:42 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 24 Mar 2011 02:46:17 +0000 (19:46 -0700)
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: Jan Kara <jack@suse.cz>
Cc: Andreas Dilger <adilger.kernel@dilger.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/ext3_fs.h

index 6043c64c207afa170c3de5a0551bd68451314263..85c1d302c12ec6833c013fc076b801da85a07abc 100644 (file)
@@ -418,13 +418,13 @@ struct ext3_inode {
 #define EXT2_MOUNT_DATA_FLAGS          EXT3_MOUNT_DATA_FLAGS
 #endif
 
-#define ext3_set_bit                   ext2_set_bit
+#define ext3_set_bit                   __test_and_set_bit_le
 #define ext3_set_bit_atomic            ext2_set_bit_atomic
-#define ext3_clear_bit                 ext2_clear_bit
+#define ext3_clear_bit                 __test_and_clear_bit_le
 #define ext3_clear_bit_atomic          ext2_clear_bit_atomic
-#define ext3_test_bit                  ext2_test_bit
-#define ext3_find_first_zero_bit       ext2_find_first_zero_bit
-#define ext3_find_next_zero_bit                ext2_find_next_zero_bit
+#define ext3_test_bit                  test_bit_le
+#define ext3_find_first_zero_bit       find_first_zero_bit_le
+#define ext3_find_next_zero_bit                find_next_zero_bit_le
 
 /*
  * Maximal mount counts between two filesystem checks