From: Shaohua Li Date: Wed, 5 Oct 2011 00:42:55 +0000 (+1100) Subject: vmscan: count pages into balanced for zone with good watermark X-Git-Tag: next-20111006~1^2~193 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=51b3d532736fa5527f6b5e7d2201d71cb49d537e;p=karo-tx-linux.git vmscan: count pages into balanced for zone with good watermark It's possible a zone watermark is ok when entering the balance_pgdat() loop, while the zone is within the requested classzone_idx. Count pages from this zone into `balanced'. In this way, we can skip shrinking zones too much for high order allocation. Signed-off-by: Shaohua Li Acked-by: Mel Gorman Reviewed-by: Minchan Kim Signed-off-by: Andrew Morton --- diff --git a/mm/vmscan.c b/mm/vmscan.c index a297603d35bc..77ee24fc891a 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -2748,6 +2748,8 @@ out: /* If balanced, clear the congested flag */ zone_clear_flag(zone, ZONE_CONGESTED); + if (i <= *classzone_idx) + balanced += zone->present_pages; } }