diff options
author | Mel Gorman <mgorman@suse.de> | 2014-08-28 19:35:17 +0100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2014-09-26 11:52:02 +0200 |
commit | 605cf7a17583cbbdbb58a99c6752133ad0f5c378 (patch) | |
tree | 8790b0368afedbf6cae3899bcb2de04f0f277e77 /mm/page_alloc.c | |
parent | 55dcadc2753639b07efed5d8baafeab47d4613a7 (diff) |
mm: page_alloc: do not treat a zone that cannot be used for dirty pages as "full"
commit 800a1e750c7b04c2aa2459afca77e936e01c0029 upstream.
If a zone cannot be used for a dirty page then it gets marked "full" which
is cached in the zlc and later potentially skipped by allocation requests
that have nothing to do with dirty zones.
Signed-off-by: Mel Gorman <mgorman@suse.de>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Reviewed-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Mel Gorman <mgorman@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 2834c31ad0c1..68e0349f95e4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -1966,7 +1966,7 @@ zonelist_scan: */ if ((alloc_flags & ALLOC_WMARK_LOW) && (gfp_mask & __GFP_WRITE) && !zone_dirty_ok(zone)) - goto this_zone_full; + continue; mark = zone->watermark[alloc_flags & ALLOC_WMARK_MASK]; if (!zone_watermark_ok(zone, order, mark, |