ext4: remove unused variable in mb_find_extent()
authorRobin Dong <[email protected]>
Wed, 26 Oct 2011 09:30:30 +0000 (05:30 -0400)
committerTheodore Ts'o <[email protected]>
Wed, 26 Oct 2011 09:30:30 +0000 (05:30 -0400)
The variable 'ord' in function mb_find_extent() is redundant, so
remove it.

Signed-off-by: Robin Dong <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
fs/ext4/mballoc.c

index c66531d800b1f019d17f0ef9baaffcc6de66a8d5..2bb1ddc5c30b33a3c7d64462abfc6ff80dd9fd5f 100644 (file)
@@ -1391,7 +1391,6 @@ static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
 {
        int next = block;
        int max;
-       int ord;
        void *buddy;
 
        assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
@@ -1433,9 +1432,8 @@ static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
                if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
                        break;
 
-               ord = mb_find_order_for_block(e4b, next);
+               order = mb_find_order_for_block(e4b, next);
 
-               order = ord;
                block = next >> order;
                ex->fe_len += 1 << order;
        }