diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/vmscan.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index 0882014d2ce5..47a50962ce81 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -1276,7 +1276,8 @@ putback_lru_pages(struct zone *zone, struct scan_control *sc, | |||
1276 | add_page_to_lru_list(zone, page, lru); | 1276 | add_page_to_lru_list(zone, page, lru); |
1277 | if (is_active_lru(lru)) { | 1277 | if (is_active_lru(lru)) { |
1278 | int file = is_file_lru(lru); | 1278 | int file = is_file_lru(lru); |
1279 | reclaim_stat->recent_rotated[file]++; | 1279 | int numpages = hpage_nr_pages(page); |
1280 | reclaim_stat->recent_rotated[file] += numpages; | ||
1280 | } | 1281 | } |
1281 | if (!pagevec_add(&pvec, page)) { | 1282 | if (!pagevec_add(&pvec, page)) { |
1282 | spin_unlock_irq(&zone->lru_lock); | 1283 | spin_unlock_irq(&zone->lru_lock); |
@@ -1552,7 +1553,7 @@ static void shrink_active_list(unsigned long nr_pages, struct zone *zone, | |||
1552 | } | 1553 | } |
1553 | 1554 | ||
1554 | if (page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) { | 1555 | if (page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) { |
1555 | nr_rotated++; | 1556 | nr_rotated += hpage_nr_pages(page); |
1556 | /* | 1557 | /* |
1557 | * Identify referenced, file-backed active pages and | 1558 | * Identify referenced, file-backed active pages and |
1558 | * give them one more trip around the active list. So | 1559 | * give them one more trip around the active list. So |