diff options
author | Lukas Czerner <lczerner@redhat.com> | 2013-03-10 22:21:49 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-03-10 22:21:49 -0400 |
commit | e3d85c366089015805f175324bb1780249f44669 (patch) | |
tree | f9b28e113b9409bb1cb3add6d7ef8a65e6b57b8e /fs | |
parent | e1c36595bedc2e1b4112f01256cb30f4d9f9ae46 (diff) | |
download | linux-3.10-e3d85c366089015805f175324bb1780249f44669.tar.gz linux-3.10-e3d85c366089015805f175324bb1780249f44669.tar.bz2 linux-3.10-e3d85c366089015805f175324bb1780249f44669.zip |
ext4: remove unused variable in ext4_free_blocks()
Remove unused variable 'freed' in ext4_free_blocks().
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/mballoc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 7bb713a46fe..75e05f3a730 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4464,7 +4464,6 @@ void ext4_free_blocks(handle_t *handle, struct inode *inode, struct buffer_head *bitmap_bh = NULL; struct super_block *sb = inode->i_sb; struct ext4_group_desc *gdp; - unsigned long freed = 0; unsigned int overflow; ext4_grpblk_t bit; struct buffer_head *gd_bh; @@ -4672,8 +4671,6 @@ do_more: ext4_mb_unload_buddy(&e4b); - freed += count; - if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE)) dquot_free_block(inode, EXT4_C2B(sbi, count_clusters)); |