Whamcloud - gitweb
Comment out ext2_find_first_bit_set and ext2fs_find_next_bit_set
authorTheodore Ts'o <tytso@mit.edu>
Fri, 20 Jul 2001 16:33:37 +0000 (12:33 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 20 Jul 2001 16:33:37 +0000 (12:33 -0400)
since we're not using them.

lib/ext2fs/ChangeLog
lib/ext2fs/bitops.h

index cd881e8..104a2f4 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-20  Theodore Tso  <tytso@valinux.com>
+
+       * bitops.h (ext2fs_find_first_bit_set, ext2fs_find_next_bit_set):
+               Comment out these functions since we're not using them.
+
 2001-07-10  Theodore Tso  <tytso@valinux.com>
 
        * closefs.c (write_primary_superblock): After writing changes to
index bf6b006..7872b36 100644 (file)
@@ -157,6 +157,7 @@ _INLINE_ int ext2fs_test_bit(int nr, const void * addr)
        return oldbit;
 }
 
+#if 0
 _INLINE_ int ext2fs_find_first_bit_set(void * addr, unsigned size)
 {
        int d0, d1, d2;
@@ -208,6 +209,7 @@ _INLINE_ int ext2fs_find_next_bit_set (void * addr, int size, int offset)
        res = ext2fs_find_first_bit_set(p, size - 32 * (p - (unsigned long *) addr));
        return (offset + set + res);
 }
+#endif
 
 #ifdef EXT2FS_ENABLE_SWAPFS
 _INLINE_ __u32 ext2fs_swab32(__u32 val)