summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorDmitry Monakhov <dmonakhov@openvz.org>2010-05-16 00:00:00 -0400
committerTheodore Ts'o <tytso@mit.edu>2010-05-16 00:00:00 -0400
commit35121c9860316d7799cea0fbc359a9186e7c2747 (patch)
tree6deb327895e42708a491a3b5d7a66b95cfb18003 /fs/ext4
parentb684b2ee9409f2890a8b3aea98525bbe5f84e276 (diff)
downloadlinux-stable-35121c9860316d7799cea0fbc359a9186e7c2747.tar.gz
linux-stable-35121c9860316d7799cea0fbc359a9186e7c2747.tar.bz2
linux-stable-35121c9860316d7799cea0fbc359a9186e7c2747.zip
ext4: fix quota accounting in case of fallocate
allocated_meta_data is already included in 'used' variable. Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/inode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 81d605412844..55bfcd94d1ab 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -1126,7 +1126,8 @@ void ext4_da_update_reserve_space(struct inode *inode,
*/
if (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);
}
/*