mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
[PATCH] mm: __GFP_NOFAIL fix
In __alloc_pages(): if ((p->flags & (PF_MEMALLOC | PF_MEMDIE)) && !in_interrupt()) { /* go through the zonelist yet again, ignoring mins */ for (i = 0; zones[i] != NULL; i++) { struct zone *z = zones[i]; page = buffered_rmqueue(z, order, gfp_mask); if (page) { zone_statistics(zonelist, z); goto got_pg; } } goto nopage; <<<< HERE!!! FAIL... } kswapd (which has PF_MEMALLOC flag) can fail to allocate memory even when it allocates it with __GFP_NOFAIL flag. Signed-Off-By: Pavel Emelianov <xemul@sw.ru> Signed-Off-By: Denis Lunev <den@sw.ru> Signed-Off-By: Kirill Korotaev <dev@sw.ru> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
d4d28dd4b1
commit
885036d32f
@ -895,6 +895,7 @@ zone_reclaim_retry:
|
|||||||
if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
|
if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
|
||||||
&& !in_interrupt()) {
|
&& !in_interrupt()) {
|
||||||
if (!(gfp_mask & __GFP_NOMEMALLOC)) {
|
if (!(gfp_mask & __GFP_NOMEMALLOC)) {
|
||||||
|
nofail_alloc:
|
||||||
/* go through the zonelist yet again, ignoring mins */
|
/* go through the zonelist yet again, ignoring mins */
|
||||||
for (i = 0; (z = zones[i]) != NULL; i++) {
|
for (i = 0; (z = zones[i]) != NULL; i++) {
|
||||||
if (!cpuset_zone_allowed(z, gfp_mask))
|
if (!cpuset_zone_allowed(z, gfp_mask))
|
||||||
@ -903,6 +904,10 @@ zone_reclaim_retry:
|
|||||||
if (page)
|
if (page)
|
||||||
goto got_pg;
|
goto got_pg;
|
||||||
}
|
}
|
||||||
|
if (gfp_mask & __GFP_NOFAIL) {
|
||||||
|
blk_congestion_wait(WRITE, HZ/50);
|
||||||
|
goto nofail_alloc;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
goto nopage;
|
goto nopage;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user