dect
/
linux-2.6
Archived
13
0
Fork 0

ext3: Fix writepage credits computation for ordered mode

Original computation forgets to count writes of indirect block themselves
(it only counts with blocks necessary for their allocation) in ordered mode.

Acked-by: Amir Goldstein <amir73il@users.sf.net>
Signed-off-by:Yongqiang Yang <xiaoqiangnk@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
Yongqiang Yang 2011-03-24 08:48:39 +08:00 committed by Jan Kara
parent eddecbb601
commit 523334ba50
1 changed files with 1 additions and 1 deletions

View File

@ -3294,7 +3294,7 @@ static int ext3_writepage_trans_blocks(struct inode *inode)
if (ext3_should_journal_data(inode))
ret = 3 * (bpp + indirects) + 2;
else
ret = 2 * (bpp + indirects) + 2;
ret = 2 * (bpp + indirects) + indirects + 2;
#ifdef CONFIG_QUOTA
/* We know that structure was already allocated during dquot_initialize so