]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
ext4: cleanup in ext4_discard_allocated_blocks()
authorZheng Liu <gnehzuil.liu@gmail.com>
Mon, 28 May 2012 21:53:53 +0000 (17:53 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 28 May 2012 21:53:53 +0000 (17:53 -0400)
remove 'len' variable in ext4_discard_allocated_blocks() because it is
useless.

Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/mballoc.c

index 45cb31e8dd27a64b6c7c45683e2bce365565f54c..e4b4ac1ec684a4025a25525c5bda34a838462046 100644 (file)
@@ -3073,13 +3073,9 @@ static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
 static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
 {
        struct ext4_prealloc_space *pa = ac->ac_pa;
-       int len;
-
-       if (pa && pa->pa_type == MB_INODE_PA) {
-               len = ac->ac_b_ex.fe_len;
-               pa->pa_free += len;
-       }
 
+       if (pa && pa->pa_type == MB_INODE_PA)
+               pa->pa_free += ac->ac_b_ex.fe_len;
 }
 
 /*