aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorMinchan Kim <minchan.kim@gmail.com>2010-03-05 16:41:45 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-06 14:26:24 -0500
commit45973d74fd3b1e3e16c025b688a725c7653b1443 (patch)
tree79b002bf8da8807a4d82314426611ca2109f83e8 /mm
parent59e99e5b9706867f18d4a36c1e4645fbaacbec2e (diff)
vmscan: check high watermark after shrink zone
Kswapd checks that zone has sufficient pages free via zone_watermark_ok(). If any zone doesn't have enough pages, we set all_zones_ok to zero. !all_zone_ok makes kswapd retry rather than sleeping. I think the watermark check before shrink_zone() is pointless. Only after kswapd has tried to shrink the zone is the check meaningful. Move the check to after the call to shrink_zone(). [akpm@linux-foundation.org: fix comment, layout] Signed-off-by: Minchan Kim <minchan.kim@gmail.com> Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: Rik van Riel <riel@redhat.com> Reviewed-by: Wu Fengguang <fengguang.wu@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/vmscan.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c
index c26986c85ce0..96ebe6608d5c 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -2060,9 +2060,6 @@ loop_again:
2060 priority != DEF_PRIORITY) 2060 priority != DEF_PRIORITY)
2061 continue; 2061 continue;
2062 2062
2063 if (!zone_watermark_ok(zone, order,
2064 high_wmark_pages(zone), end_zone, 0))
2065 all_zones_ok = 0;
2066 temp_priority[i] = priority; 2063 temp_priority[i] = priority;
2067 sc.nr_scanned = 0; 2064 sc.nr_scanned = 0;
2068 note_zone_scanning_priority(zone, priority); 2065 note_zone_scanning_priority(zone, priority);
@@ -2102,13 +2099,18 @@ loop_again:
2102 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2) 2099 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
2103 sc.may_writepage = 1; 2100 sc.may_writepage = 1;
2104 2101
2105 /* 2102 if (!zone_watermark_ok(zone, order,
2106 * We are still under min water mark. it mean we have 2103 high_wmark_pages(zone), end_zone, 0)) {
2107 * GFP_ATOMIC allocation failure risk. Hurry up! 2104 all_zones_ok = 0;
2108 */ 2105 /*
2109 if (!zone_watermark_ok(zone, order, min_wmark_pages(zone), 2106 * We are still under min water mark. This
2110 end_zone, 0)) 2107 * means that we have a GFP_ATOMIC allocation
2111 has_under_min_watermark_zone = 1; 2108 * failure risk. Hurry up!
2109 */
2110 if (!zone_watermark_ok(zone, order,
2111 min_wmark_pages(zone), end_zone, 0))
2112 has_under_min_watermark_zone = 1;
2113 }
2112 2114
2113 } 2115 }
2114 if (all_zones_ok) 2116 if (all_zones_ok)