Commit 35121c98 authored by Dmitry Monakhov's avatar Dmitry Monakhov Committed by Theodore Ts'o

ext4: fix quota accounting in case of fallocate

allocated_meta_data is already included in 'used' variable.
Signed-off-by: default avatarDmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent b684b2ee
...@@ -1126,7 +1126,8 @@ void ext4_da_update_reserve_space(struct inode *inode, ...@@ -1126,7 +1126,8 @@ void ext4_da_update_reserve_space(struct inode *inode,
*/ */
if (allocated_meta_blocks) if (allocated_meta_blocks)
dquot_claim_block(inode, allocated_meta_blocks); dquot_claim_block(inode, allocated_meta_blocks);
dquot_release_reservation_block(inode, mdb_free + used); dquot_release_reservation_block(inode, mdb_free + used -
allocated_meta_blocks);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment