Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40386
b: refs/heads/master
c: bbdb396
h: refs/heads/master
v: v3
  • Loading branch information
Martin Bligh authored and Linus Torvalds committed Oct 28, 2006
1 parent 7bb4183 commit 47e5f23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 3bb1a852ab6c9cdf211a2f4a2f502340c8c38eca
refs/heads/master: bbdb396a60b2ebf7de3b717991e5d3e28c8b7bbd
8 changes: 4 additions & 4 deletions trunk/mm/vmscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ static inline int zone_is_near_oom(struct zone *zone)
* But we had to alter page->flags anyway.
*/
static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
struct scan_control *sc)
struct scan_control *sc, int priority)
{
unsigned long pgmoved;
int pgdeactivate = 0;
Expand All @@ -784,7 +784,7 @@ static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
* `distress' is a measure of how much trouble we're having
* reclaiming pages. 0 -> no problems. 100 -> great trouble.
*/
distress = 100 >> zone->prev_priority;
distress = 100 >> min(zone->prev_priority, priority);

/*
* The point of this algorithm is to decide when to start
Expand Down Expand Up @@ -936,7 +936,7 @@ static unsigned long shrink_zone(int priority, struct zone *zone,
nr_to_scan = min(nr_active,
(unsigned long)sc->swap_cluster_max);
nr_active -= nr_to_scan;
shrink_active_list(nr_to_scan, zone, sc);
shrink_active_list(nr_to_scan, zone, sc, priority);
}

if (nr_inactive) {
Expand Down Expand Up @@ -1384,7 +1384,7 @@ static unsigned long shrink_all_zones(unsigned long nr_pages, int pass,
if (zone->nr_scan_active >= nr_pages || pass > 3) {
zone->nr_scan_active = 0;
nr_to_scan = min(nr_pages, zone->nr_active);
shrink_active_list(nr_to_scan, zone, sc);
shrink_active_list(nr_to_scan, zone, sc, prio);
}
}

Expand Down

0 comments on commit 47e5f23

Please sign in to comment.