Skip to content

Commit

Permalink
mm: trivial cleanups in vmscan.c
Browse files Browse the repository at this point in the history
Utter trivia in mm/vmscan.c, mostly just reducing the linecount slightly;
most exciting change being get_scan_count() calling vmscan_swappiness()
once instead of twice.

Signed-off-by: Hugh Dickins <[email protected]>
Acked-by: KOSAKI Motohiro <[email protected]>
Acked-by: KAMEZAWA Hiroyuki <[email protected]>
Acked-by: Konstantin Khlebnikov <[email protected]>
Reviewed-by: Michal Hocko <[email protected]>
Cc: Johannes Weiner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Hugh Dickins authored and torvalds committed May 29, 2012
1 parent 4d7dcca commit 75b00af
Showing 1 changed file with 10 additions and 21 deletions.
31 changes: 10 additions & 21 deletions mm/vmscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1025,12 +1025,9 @@ static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
unsigned long *nr_scanned, struct scan_control *sc,
isolate_mode_t mode, enum lru_list lru)
{
struct list_head *src;
struct list_head *src = &lruvec->lists[lru];
unsigned long nr_taken = 0;
unsigned long scan;
int file = is_file_lru(lru);

src = &lruvec->lists[lru];

for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
struct page *page;
Expand Down Expand Up @@ -1058,11 +1055,8 @@ static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
}

*nr_scanned = scan;

trace_mm_vmscan_lru_isolate(sc->order,
nr_to_scan, scan,
nr_taken,
mode, file);
trace_mm_vmscan_lru_isolate(sc->order, nr_to_scan, scan,
nr_taken, mode, is_file_lru(lru));
return nr_taken;
}

Expand Down Expand Up @@ -1140,8 +1134,7 @@ static int too_many_isolated(struct zone *zone, int file,
}

static noinline_for_stack void
putback_inactive_pages(struct lruvec *lruvec,
struct list_head *page_list)
putback_inactive_pages(struct lruvec *lruvec, struct list_head *page_list)
{
struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
struct zone *zone = lruvec_zone(lruvec);
Expand Down Expand Up @@ -1235,11 +1228,9 @@ shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
if (global_reclaim(sc)) {
zone->pages_scanned += nr_scanned;
if (current_is_kswapd())
__count_zone_vm_events(PGSCAN_KSWAPD, zone,
nr_scanned);
__count_zone_vm_events(PGSCAN_KSWAPD, zone, nr_scanned);
else
__count_zone_vm_events(PGSCAN_DIRECT, zone,
nr_scanned);
__count_zone_vm_events(PGSCAN_DIRECT, zone, nr_scanned);
}
spin_unlock_irq(&zone->lru_lock);

Expand Down Expand Up @@ -1534,9 +1525,9 @@ static int inactive_file_is_low(struct lruvec *lruvec)
return inactive_file_is_low_global(lruvec_zone(lruvec));
}

static int inactive_list_is_low(struct lruvec *lruvec, int file)
static int inactive_list_is_low(struct lruvec *lruvec, enum lru_list lru)
{
if (file)
if (is_file_lru(lru))
return inactive_file_is_low(lruvec);
else
return inactive_anon_is_low(lruvec);
Expand All @@ -1545,10 +1536,8 @@ static int inactive_list_is_low(struct lruvec *lruvec, int file)
static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
struct lruvec *lruvec, struct scan_control *sc)
{
int file = is_file_lru(lru);

if (is_active_lru(lru)) {
if (inactive_list_is_low(lruvec, file))
if (inactive_list_is_low(lruvec, lru))
shrink_active_list(nr_to_scan, lruvec, sc, lru);
return 0;
}
Expand Down Expand Up @@ -1630,7 +1619,7 @@ static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
* This scanning priority is essentially the inverse of IO cost.
*/
anon_prio = vmscan_swappiness(sc);
file_prio = 200 - vmscan_swappiness(sc);
file_prio = 200 - anon_prio;

/*
* OK, so we have swap space and a fair amount of page cache
Expand Down

0 comments on commit 75b00af

Please sign in to comment.