diff options
Diffstat (limited to 'mm/vmstat.c')
| -rw-r--r-- | mm/vmstat.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c index b37bd49bfd55..e9ab104b956f 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c @@ -200,7 +200,7 @@ void set_pgdat_percpu_threshold(pg_data_t *pgdat,  			continue;  		threshold = (*calculate_pressure)(zone); -		for_each_possible_cpu(cpu) +		for_each_online_cpu(cpu)  			per_cpu_ptr(zone->pageset, cpu)->stat_threshold  							= threshold;  	} @@ -763,6 +763,7 @@ const char * const vmstat_text[] = {  	"nr_shmem",  	"nr_dirtied",  	"nr_written", +	"nr_pages_scanned",  #ifdef CONFIG_NUMA  	"numa_hit", @@ -1067,7 +1068,7 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,  		   min_wmark_pages(zone),  		   low_wmark_pages(zone),  		   high_wmark_pages(zone), -		   zone->pages_scanned, +		   zone_page_state(zone, NR_PAGES_SCANNED),  		   zone->spanned_pages,  		   zone->present_pages,  		   zone->managed_pages); @@ -1077,10 +1078,10 @@ static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,  				zone_page_state(zone, i));  	seq_printf(m, -		   "\n        protection: (%lu", +		   "\n        protection: (%ld",  		   zone->lowmem_reserve[0]);  	for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++) -		seq_printf(m, ", %lu", zone->lowmem_reserve[i]); +		seq_printf(m, ", %ld", zone->lowmem_reserve[i]);  	seq_printf(m,  		   ")"  		   "\n  pagesets");  |