|
@@ -80,7 +80,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
|
|
|
show_val_kb(m, "Active(file): ", pages[LRU_ACTIVE_FILE]);
|
|
|
show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]);
|
|
|
show_val_kb(m, "Unevictable: ", pages[LRU_UNEVICTABLE]);
|
|
|
- show_val_kb(m, "Mlocked: ", global_page_state(NR_MLOCK));
|
|
|
+ show_val_kb(m, "Mlocked: ", global_zone_page_state(NR_MLOCK));
|
|
|
|
|
|
#ifdef CONFIG_HIGHMEM
|
|
|
show_val_kb(m, "HighTotal: ", i.totalhigh);
|
|
@@ -114,9 +114,9 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
|
|
|
show_val_kb(m, "SUnreclaim: ",
|
|
|
global_node_page_state(NR_SLAB_UNRECLAIMABLE));
|
|
|
seq_printf(m, "KernelStack: %8lu kB\n",
|
|
|
- global_page_state(NR_KERNEL_STACK_KB));
|
|
|
+ global_zone_page_state(NR_KERNEL_STACK_KB));
|
|
|
show_val_kb(m, "PageTables: ",
|
|
|
- global_page_state(NR_PAGETABLE));
|
|
|
+ global_zone_page_state(NR_PAGETABLE));
|
|
|
#ifdef CONFIG_QUICKLIST
|
|
|
show_val_kb(m, "Quicklists: ", quicklist_total_size());
|
|
|
#endif
|
|
@@ -124,7 +124,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
|
|
|
show_val_kb(m, "NFS_Unstable: ",
|
|
|
global_node_page_state(NR_UNSTABLE_NFS));
|
|
|
show_val_kb(m, "Bounce: ",
|
|
|
- global_page_state(NR_BOUNCE));
|
|
|
+ global_zone_page_state(NR_BOUNCE));
|
|
|
show_val_kb(m, "WritebackTmp: ",
|
|
|
global_node_page_state(NR_WRITEBACK_TEMP));
|
|
|
show_val_kb(m, "CommitLimit: ", vm_commit_limit());
|
|
@@ -151,7 +151,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
|
|
|
#ifdef CONFIG_CMA
|
|
|
show_val_kb(m, "CmaTotal: ", totalcma_pages);
|
|
|
show_val_kb(m, "CmaFree: ",
|
|
|
- global_page_state(NR_FREE_CMA_PAGES));
|
|
|
+ global_zone_page_state(NR_FREE_CMA_PAGES));
|
|
|
#endif
|
|
|
|
|
|
hugetlb_report_meminfo(m);
|