diff options
author | Mel Gorman <mgorman@techsingularity.net> | 2015-11-06 19:28:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-06 20:50:42 -0500 |
commit | c9ab0c4fbeb0202bac3548378a977e1536ebe3ca (patch) | |
tree | 44d92e1b08afbb47e64ec55d9ceb7704b4f0815c /mm/page_alloc.c | |
parent | e2b19197ff9dc46f3e3888f273c4395f9e5a9856 (diff) |
mm, page_alloc: remove unnecessary recalculations for dirty zone balancing
File-backed pages that will be immediately written are balanced between
zones. This heuristic tries to avoid having a single zone filled with
recently dirtied pages but the checks are unnecessarily expensive. Move
consider_zone_balanced into the alloc_context instead of checking bitmaps
multiple times. The patch also gives the parameter a more meaningful
name.
Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
Acked-by: David Rientjes <rientjes@google.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Cc: Christoph Lameter <cl@linux.com>
Cc: Vitaly Wool <vitalywool@gmail.com>
Cc: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d73c346d91b3..67390988881a 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2478,8 +2478,6 @@ get_page_from_freelist(gfp_t gfp_mask, unsigned int order, int alloc_flags, | |||
2478 | nodemask_t *allowednodes = NULL;/* zonelist_cache approximation */ | 2478 | nodemask_t *allowednodes = NULL;/* zonelist_cache approximation */ |
2479 | int zlc_active = 0; /* set if using zonelist_cache */ | 2479 | int zlc_active = 0; /* set if using zonelist_cache */ |
2480 | int did_zlc_setup = 0; /* just call zlc_setup() one time */ | 2480 | int did_zlc_setup = 0; /* just call zlc_setup() one time */ |
2481 | bool consider_zone_dirty = (alloc_flags & ALLOC_WMARK_LOW) && | ||
2482 | (gfp_mask & __GFP_WRITE); | ||
2483 | int nr_fair_skipped = 0; | 2481 | int nr_fair_skipped = 0; |
2484 | bool zonelist_rescan; | 2482 | bool zonelist_rescan; |
2485 | 2483 | ||
@@ -2534,14 +2532,14 @@ zonelist_scan: | |||
2534 | * | 2532 | * |
2535 | * XXX: For now, allow allocations to potentially | 2533 | * XXX: For now, allow allocations to potentially |
2536 | * exceed the per-zone dirty limit in the slowpath | 2534 | * exceed the per-zone dirty limit in the slowpath |
2537 | * (ALLOC_WMARK_LOW unset) before going into reclaim, | 2535 | * (spread_dirty_pages unset) before going into reclaim, |
2538 | * which is important when on a NUMA setup the allowed | 2536 | * which is important when on a NUMA setup the allowed |
2539 | * zones are together not big enough to reach the | 2537 | * zones are together not big enough to reach the |
2540 | * global limit. The proper fix for these situations | 2538 | * global limit. The proper fix for these situations |
2541 | * will require awareness of zones in the | 2539 | * will require awareness of zones in the |
2542 | * dirty-throttling and the flusher threads. | 2540 | * dirty-throttling and the flusher threads. |
2543 | */ | 2541 | */ |
2544 | if (consider_zone_dirty && !zone_dirty_ok(zone)) | 2542 | if (ac->spread_dirty_pages && !zone_dirty_ok(zone)) |
2545 | continue; | 2543 | continue; |
2546 | 2544 | ||
2547 | mark = zone->watermark[alloc_flags & ALLOC_WMARK_MASK]; | 2545 | mark = zone->watermark[alloc_flags & ALLOC_WMARK_MASK]; |
@@ -3232,6 +3230,10 @@ retry_cpuset: | |||
3232 | 3230 | ||
3233 | /* We set it here, as __alloc_pages_slowpath might have changed it */ | 3231 | /* We set it here, as __alloc_pages_slowpath might have changed it */ |
3234 | ac.zonelist = zonelist; | 3232 | ac.zonelist = zonelist; |
3233 | |||
3234 | /* Dirty zone balancing only done in the fast path */ | ||
3235 | ac.spread_dirty_pages = (gfp_mask & __GFP_WRITE); | ||
3236 | |||
3235 | /* The preferred zone is used for statistics later */ | 3237 | /* The preferred zone is used for statistics later */ |
3236 | preferred_zoneref = first_zones_zonelist(ac.zonelist, ac.high_zoneidx, | 3238 | preferred_zoneref = first_zones_zonelist(ac.zonelist, ac.high_zoneidx, |
3237 | ac.nodemask ? : &cpuset_current_mems_allowed, | 3239 | ac.nodemask ? : &cpuset_current_mems_allowed, |
@@ -3250,6 +3252,7 @@ retry_cpuset: | |||
3250 | * complete. | 3252 | * complete. |
3251 | */ | 3253 | */ |
3252 | alloc_mask = memalloc_noio_flags(gfp_mask); | 3254 | alloc_mask = memalloc_noio_flags(gfp_mask); |
3255 | ac.spread_dirty_pages = false; | ||
3253 | 3256 | ||
3254 | page = __alloc_pages_slowpath(alloc_mask, order, &ac); | 3257 | page = __alloc_pages_slowpath(alloc_mask, order, &ac); |
3255 | } | 3258 | } |