diff options
Diffstat (limited to 'mm/vmstat.c')
-rw-r--r-- | mm/vmstat.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c index 52c0335c1b71..27400b7da7c4 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c | |||
@@ -619,8 +619,10 @@ const struct seq_operations pagetypeinfo_op = { | |||
619 | static const char * const vmstat_text[] = { | 619 | static const char * const vmstat_text[] = { |
620 | /* Zoned VM counters */ | 620 | /* Zoned VM counters */ |
621 | "nr_free_pages", | 621 | "nr_free_pages", |
622 | "nr_inactive", | 622 | "nr_inactive_anon", |
623 | "nr_active", | 623 | "nr_active_anon", |
624 | "nr_inactive_file", | ||
625 | "nr_active_file", | ||
624 | "nr_anon_pages", | 626 | "nr_anon_pages", |
625 | "nr_mapped", | 627 | "nr_mapped", |
626 | "nr_file_pages", | 628 | "nr_file_pages", |
@@ -688,7 +690,7 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat, | |||
688 | "\n min %lu" | 690 | "\n min %lu" |
689 | "\n low %lu" | 691 | "\n low %lu" |
690 | "\n high %lu" | 692 | "\n high %lu" |
691 | "\n scanned %lu (a: %lu i: %lu)" | 693 | "\n scanned %lu (aa: %lu ia: %lu af: %lu if: %lu)" |
692 | "\n spanned %lu" | 694 | "\n spanned %lu" |
693 | "\n present %lu", | 695 | "\n present %lu", |
694 | zone_page_state(zone, NR_FREE_PAGES), | 696 | zone_page_state(zone, NR_FREE_PAGES), |
@@ -696,8 +698,10 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat, | |||
696 | zone->pages_low, | 698 | zone->pages_low, |
697 | zone->pages_high, | 699 | zone->pages_high, |
698 | zone->pages_scanned, | 700 | zone->pages_scanned, |
699 | zone->lru[LRU_ACTIVE].nr_scan, | 701 | zone->lru[LRU_ACTIVE_ANON].nr_scan, |
700 | zone->lru[LRU_INACTIVE].nr_scan, | 702 | zone->lru[LRU_INACTIVE_ANON].nr_scan, |
703 | zone->lru[LRU_ACTIVE_FILE].nr_scan, | ||
704 | zone->lru[LRU_INACTIVE_FILE].nr_scan, | ||
701 | zone->spanned_pages, | 705 | zone->spanned_pages, |
702 | zone->present_pages); | 706 | zone->present_pages); |
703 | 707 | ||