Commit aa45600e authored by Alexander Viro's avatar Alexander Viro Committed by David S. Miller

[PATCH] fix for typo in ext2_new_inode()

	Please, apply.  Otherwise we eat quota like there's no tomorrow ;-/
parent 2226f84b
......@@ -404,7 +404,7 @@ int ext2_new_block (struct inode * inode, unsigned long goal,
if (DQUOT_ALLOC_BLOCK(inode, 1))
goto out;
while (prealloc_goal && !DQUOT_PREALLOC_BLOCK(inode, prealloc_goal))
while (prealloc_goal && DQUOT_PREALLOC_BLOCK(inode, prealloc_goal))
prealloc_goal--;
dq_alloc = prealloc_goal + 1;
......
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