Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284406
b: refs/heads/master
c: 0cee34f
h: refs/heads/master
v: v3
  • Loading branch information
Mel Gorman authored and Linus Torvalds committed Jan 13, 2012
1 parent fd8133d commit 4be4ca8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fe4b1b244bdb96136855f2c694071cb09d140766
refs/heads/master: 0cee34fd72c582b4f8ad8ce00645b75fb4168199
19 changes: 9 additions & 10 deletions trunk/mm/vmscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -2217,7 +2217,8 @@ static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
*
* This function returns true if a zone is being reclaimed for a costly
* high-order allocation and compaction is ready to begin. This indicates to
* the caller that it should retry the allocation or fail.
* the caller that it should consider retrying the allocation instead of
* further reclaim.
*/
static bool shrink_zones(int priority, struct zonelist *zonelist,
struct scan_control *sc)
Expand All @@ -2226,7 +2227,7 @@ static bool shrink_zones(int priority, struct zonelist *zonelist,
struct zone *zone;
unsigned long nr_soft_reclaimed;
unsigned long nr_soft_scanned;
bool should_abort_reclaim = false;
bool aborted_reclaim = false;

for_each_zone_zonelist_nodemask(zone, z, zonelist,
gfp_zone(sc->gfp_mask), sc->nodemask) {
Expand All @@ -2252,7 +2253,7 @@ static bool shrink_zones(int priority, struct zonelist *zonelist,
* allocations.
*/
if (compaction_ready(zone, sc)) {
should_abort_reclaim = true;
aborted_reclaim = true;
continue;
}
}
Expand All @@ -2274,7 +2275,7 @@ static bool shrink_zones(int priority, struct zonelist *zonelist,
shrink_zone(priority, zone, sc);
}

return should_abort_reclaim;
return aborted_reclaim;
}

static bool zone_reclaimable(struct zone *zone)
Expand Down Expand Up @@ -2328,7 +2329,7 @@ static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
struct zoneref *z;
struct zone *zone;
unsigned long writeback_threshold;
bool should_abort_reclaim;
bool aborted_reclaim;

get_mems_allowed();
delayacct_freepages_start();
Expand All @@ -2340,9 +2341,7 @@ static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
sc->nr_scanned = 0;
if (!priority)
disable_swap_token(sc->target_mem_cgroup);
should_abort_reclaim = shrink_zones(priority, zonelist, sc);
if (should_abort_reclaim)
break;
aborted_reclaim = shrink_zones(priority, zonelist, sc);

/*
* Don't shrink slabs when reclaiming memory from
Expand Down Expand Up @@ -2409,8 +2408,8 @@ static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
if (oom_killer_disabled)
return 0;

/* Aborting reclaim to try compaction? don't OOM, then */
if (should_abort_reclaim)
/* Aborted reclaim to try compaction? don't OOM, then */
if (aborted_reclaim)
return 1;

/* top priority shrink_zones still had more to do? don't OOM, then */
Expand Down

0 comments on commit 4be4ca8

Please sign in to comment.