mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 17:43:59 +00:00
[PATCH] ext3 balloc: reset windowsz when full
ext3_new_blocks should reset the reservation window size to 0 when squeezing the last blocks out of an almost full filesystem, so the retry doesn't skip any groups with less than half that free, reporting ENOSPC too soon. Signed-off-by: Mingming Cao <cmm@us.ibm.com> Signed-off-by: Hugh Dickins <hugh@veritas.com> Cc: <linux-ext4@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
1aa16eeacd
commit
ef5036782e
@ -1552,6 +1552,7 @@ retry_alloc:
|
|||||||
*/
|
*/
|
||||||
if (my_rsv) {
|
if (my_rsv) {
|
||||||
my_rsv = NULL;
|
my_rsv = NULL;
|
||||||
|
windowsz = 0;
|
||||||
group_no = goal_group;
|
group_no = goal_group;
|
||||||
goto retry_alloc;
|
goto retry_alloc;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user