1 Jan 2010 07:42
[PATCH 1/2] ext4: Fix accounting of reserved metadata blocks
Theodore Ts'o <tytso <at> mit.edu>
2010-01-01 06:42:31 GMT
2010-01-01 06:42:31 GMT
Commit 0637c6f had a typo which caused the reserved metadata blocks to not be released correctly. Fix this. Signed-off-by: "Theodore Ts'o" <tytso <at> mit.edu> --- fs/ext4/inode.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 84eeb8f..a26a0b4 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c <at> <at> -1076,9 +1076,8 <at> <at> static void ext4_da_update_reserve_space(struct inode *inode, int used) * only when we have written all of the delayed * allocation blocks. */ - mdb_free = ei->i_allocated_meta_blocks; - percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free); - ei->i_allocated_meta_blocks = 0; + mdb_free = ei->i_reserved_meta_blocks; + ei->i_reserved_meta_blocks = 0; } spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); <at> <at> -1889,8 +1888,8 <at> <at> static void ext4_da_release_space(struct inode *inode, int to_free) * only when we have written all of the delayed * allocation blocks. */ - to_free += ei->i_allocated_meta_blocks; - ei->i_allocated_meta_blocks = 0;(Continue reading)
RSS Feed