> Okay. I got it. > > The problem is following as. > By the race the free_pcppages_bulk and balance_pgdat, it is possible > zone->all_unreclaimable = 1 and zone->pages_scanned = 0. > DMA zone have few LRU pages and in case of no-swap and big memory > pressure, there could be a just a page in inactive file list like your > example. (anon lru pages isn't important in case of non-swap system) > In such case, shrink_zones doesn't scan the page at all until priority > become 0 as get_scan_count does scan >>= priority(it's mostly zero). Nope. if (zone->all_unreclaimable && priority != DEF_PRIORITY) continue; This tow lines mean, all_unreclaimable prevent priority 0 reclaim. > And although priority become 0, nr_scan_try_batch returns zero until > saved pages become 32. So for scanning the page, at least, we need 32 > times iteration of priority 12..0. If system has fork-bomb, it is > almost livelock. Therefore, 1000 times get_scan_count(DEF_PRIORITY) takes 1000 times no-op. > > If is is right, how about this? Boo. You seems forgot why you introduced current all_unreclaimable() function. While hibernation, we can't trust all_unreclaimable. That's the reason why I proposed following patch when you introduced all_unreclaimable(). --- mm/vmscan.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/mm/vmscan.c b/mm/vmscan.c index c391c32..1919d8a 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -40,6 +40,7 @@ #include <linux/memcontrol.h> #include <linux/delayacct.h> #include <linux/sysctl.h> +#include <linux/oom.h> #include <asm/tlbflush.h> #include <asm/div64.h> @@ -1931,7 +1932,7 @@ out: return sc->nr_reclaimed; /* top priority shrink_zones still had more to do? don't OOM, then */ - if (scanning_global_lru(sc) && !all_unreclaimable) + if (scanning_global_lru(sc) && !all_unreclaimable && !oom_killer_disabled) return 1; return 0; -- 1.6.5.2 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>