xref: /openbmc/linux/fs/proc/meminfo.c (revision 61f94e18de94f79abaad3bb83549ff78923ac785)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2e1759c21SAlexey Dobriyan #include <linux/fs.h>
3e1759c21SAlexey Dobriyan #include <linux/init.h>
4e1759c21SAlexey Dobriyan #include <linux/kernel.h>
5e1759c21SAlexey Dobriyan #include <linux/mm.h>
6cb900f41SKirill A. Shutemov #include <linux/hugetlb.h>
7e1759c21SAlexey Dobriyan #include <linux/mman.h>
8e1759c21SAlexey Dobriyan #include <linux/mmzone.h>
9e1759c21SAlexey Dobriyan #include <linux/proc_fs.h>
107e8a6304SDennis Zhou (Facebook) #include <linux/percpu.h>
11e1759c21SAlexey Dobriyan #include <linux/quicklist.h>
12e1759c21SAlexey Dobriyan #include <linux/seq_file.h>
13e1759c21SAlexey Dobriyan #include <linux/swap.h>
14e1759c21SAlexey Dobriyan #include <linux/vmstat.h>
1560063497SArun Sharma #include <linux/atomic.h>
16db3808c1SJoonsoo Kim #include <linux/vmalloc.h>
1747f8f929SPintu Kumar #ifdef CONFIG_CMA
1847f8f929SPintu Kumar #include <linux/cma.h>
1947f8f929SPintu Kumar #endif
20e1759c21SAlexey Dobriyan #include <asm/page.h>
21e1759c21SAlexey Dobriyan #include <asm/pgtable.h>
22e1759c21SAlexey Dobriyan #include "internal.h"
23e1759c21SAlexey Dobriyan 
24e1759c21SAlexey Dobriyan void __attribute__((weak)) arch_report_meminfo(struct seq_file *m)
25e1759c21SAlexey Dobriyan {
26e1759c21SAlexey Dobriyan }
27e1759c21SAlexey Dobriyan 
28e16e2d8eSJoe Perches static void show_val_kb(struct seq_file *m, const char *s, unsigned long num)
29e16e2d8eSJoe Perches {
30d1be35cbSAndrei Vagin 	seq_put_decimal_ull_width(m, s, num << (PAGE_SHIFT - 10), 8);
31e16e2d8eSJoe Perches 	seq_write(m, " kB\n", 4);
32e16e2d8eSJoe Perches }
33e16e2d8eSJoe Perches 
34e1759c21SAlexey Dobriyan static int meminfo_proc_show(struct seq_file *m, void *v)
35e1759c21SAlexey Dobriyan {
36e1759c21SAlexey Dobriyan 	struct sysinfo i;
37e1759c21SAlexey Dobriyan 	unsigned long committed;
38e1759c21SAlexey Dobriyan 	long cached;
3934e431b0SRik van Riel 	long available;
40e1759c21SAlexey Dobriyan 	unsigned long pages[NR_LRU_LISTS];
41*61f94e18SVlastimil Babka 	unsigned long sreclaimable, sunreclaim;
42e1759c21SAlexey Dobriyan 	int lru;
43e1759c21SAlexey Dobriyan 
44e1759c21SAlexey Dobriyan 	si_meminfo(&i);
45e1759c21SAlexey Dobriyan 	si_swapinfo(&i);
4600a62ce9SKOSAKI Motohiro 	committed = percpu_counter_read_positive(&vm_committed_as);
47e1759c21SAlexey Dobriyan 
4811fb9989SMel Gorman 	cached = global_node_page_state(NR_FILE_PAGES) -
4933806f06SShaohua Li 			total_swapcache_pages() - i.bufferram;
50e1759c21SAlexey Dobriyan 	if (cached < 0)
51e1759c21SAlexey Dobriyan 		cached = 0;
52e1759c21SAlexey Dobriyan 
53e1759c21SAlexey Dobriyan 	for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++)
542f95ff90SMel Gorman 		pages[lru] = global_node_page_state(NR_LRU_BASE + lru);
55e1759c21SAlexey Dobriyan 
56d02bd27bSIgor Redko 	available = si_mem_available();
57*61f94e18SVlastimil Babka 	sreclaimable = global_node_page_state(NR_SLAB_RECLAIMABLE);
58*61f94e18SVlastimil Babka 	sunreclaim = global_node_page_state(NR_SLAB_UNRECLAIMABLE);
5934e431b0SRik van Riel 
60e16e2d8eSJoe Perches 	show_val_kb(m, "MemTotal:       ", i.totalram);
61e16e2d8eSJoe Perches 	show_val_kb(m, "MemFree:        ", i.freeram);
62e16e2d8eSJoe Perches 	show_val_kb(m, "MemAvailable:   ", available);
63e16e2d8eSJoe Perches 	show_val_kb(m, "Buffers:        ", i.bufferram);
64e16e2d8eSJoe Perches 	show_val_kb(m, "Cached:         ", cached);
65e16e2d8eSJoe Perches 	show_val_kb(m, "SwapCached:     ", total_swapcache_pages());
66e16e2d8eSJoe Perches 	show_val_kb(m, "Active:         ", pages[LRU_ACTIVE_ANON] +
67e16e2d8eSJoe Perches 					   pages[LRU_ACTIVE_FILE]);
68e16e2d8eSJoe Perches 	show_val_kb(m, "Inactive:       ", pages[LRU_INACTIVE_ANON] +
69e16e2d8eSJoe Perches 					   pages[LRU_INACTIVE_FILE]);
70e16e2d8eSJoe Perches 	show_val_kb(m, "Active(anon):   ", pages[LRU_ACTIVE_ANON]);
71e16e2d8eSJoe Perches 	show_val_kb(m, "Inactive(anon): ", pages[LRU_INACTIVE_ANON]);
72e16e2d8eSJoe Perches 	show_val_kb(m, "Active(file):   ", pages[LRU_ACTIVE_FILE]);
73e16e2d8eSJoe Perches 	show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]);
74e16e2d8eSJoe Perches 	show_val_kb(m, "Unevictable:    ", pages[LRU_UNEVICTABLE]);
75c41f012aSMichal Hocko 	show_val_kb(m, "Mlocked:        ", global_zone_page_state(NR_MLOCK));
76e16e2d8eSJoe Perches 
77e1759c21SAlexey Dobriyan #ifdef CONFIG_HIGHMEM
78e16e2d8eSJoe Perches 	show_val_kb(m, "HighTotal:      ", i.totalhigh);
79e16e2d8eSJoe Perches 	show_val_kb(m, "HighFree:       ", i.freehigh);
80e16e2d8eSJoe Perches 	show_val_kb(m, "LowTotal:       ", i.totalram - i.totalhigh);
81e16e2d8eSJoe Perches 	show_val_kb(m, "LowFree:        ", i.freeram - i.freehigh);
82e1759c21SAlexey Dobriyan #endif
83e16e2d8eSJoe Perches 
848feae131SDavid Howells #ifndef CONFIG_MMU
85e16e2d8eSJoe Perches 	show_val_kb(m, "MmapCopy:       ",
86e16e2d8eSJoe Perches 		    (unsigned long)atomic_long_read(&mmap_pages_allocated));
878feae131SDavid Howells #endif
88e16e2d8eSJoe Perches 
89e16e2d8eSJoe Perches 	show_val_kb(m, "SwapTotal:      ", i.totalswap);
90e16e2d8eSJoe Perches 	show_val_kb(m, "SwapFree:       ", i.freeswap);
91e16e2d8eSJoe Perches 	show_val_kb(m, "Dirty:          ",
92e16e2d8eSJoe Perches 		    global_node_page_state(NR_FILE_DIRTY));
93e16e2d8eSJoe Perches 	show_val_kb(m, "Writeback:      ",
94e16e2d8eSJoe Perches 		    global_node_page_state(NR_WRITEBACK));
95e16e2d8eSJoe Perches 	show_val_kb(m, "AnonPages:      ",
96e16e2d8eSJoe Perches 		    global_node_page_state(NR_ANON_MAPPED));
97e16e2d8eSJoe Perches 	show_val_kb(m, "Mapped:         ",
98e16e2d8eSJoe Perches 		    global_node_page_state(NR_FILE_MAPPED));
99e16e2d8eSJoe Perches 	show_val_kb(m, "Shmem:          ", i.sharedram);
100*61f94e18SVlastimil Babka 	show_val_kb(m, "KReclaimable:   ", sreclaimable +
101*61f94e18SVlastimil Babka 		    global_node_page_state(NR_KERNEL_MISC_RECLAIMABLE));
102*61f94e18SVlastimil Babka 	show_val_kb(m, "Slab:           ", sreclaimable + sunreclaim);
103*61f94e18SVlastimil Babka 	show_val_kb(m, "SReclaimable:   ", sreclaimable);
104*61f94e18SVlastimil Babka 	show_val_kb(m, "SUnreclaim:     ", sunreclaim);
105e16e2d8eSJoe Perches 	seq_printf(m, "KernelStack:    %8lu kB\n",
106c41f012aSMichal Hocko 		   global_zone_page_state(NR_KERNEL_STACK_KB));
107e16e2d8eSJoe Perches 	show_val_kb(m, "PageTables:     ",
108c41f012aSMichal Hocko 		    global_zone_page_state(NR_PAGETABLE));
109e1759c21SAlexey Dobriyan #ifdef CONFIG_QUICKLIST
110e16e2d8eSJoe Perches 	show_val_kb(m, "Quicklists:     ", quicklist_total_size());
111e1759c21SAlexey Dobriyan #endif
112e16e2d8eSJoe Perches 
113e16e2d8eSJoe Perches 	show_val_kb(m, "NFS_Unstable:   ",
114e16e2d8eSJoe Perches 		    global_node_page_state(NR_UNSTABLE_NFS));
115e16e2d8eSJoe Perches 	show_val_kb(m, "Bounce:         ",
116c41f012aSMichal Hocko 		    global_zone_page_state(NR_BOUNCE));
117e16e2d8eSJoe Perches 	show_val_kb(m, "WritebackTmp:   ",
118e16e2d8eSJoe Perches 		    global_node_page_state(NR_WRITEBACK_TEMP));
119e16e2d8eSJoe Perches 	show_val_kb(m, "CommitLimit:    ", vm_commit_limit());
120e16e2d8eSJoe Perches 	show_val_kb(m, "Committed_AS:   ", committed);
121e16e2d8eSJoe Perches 	seq_printf(m, "VmallocTotal:   %8lu kB\n",
122e16e2d8eSJoe Perches 		   (unsigned long)VMALLOC_TOTAL >> 10);
123e16e2d8eSJoe Perches 	show_val_kb(m, "VmallocUsed:    ", 0ul);
124e16e2d8eSJoe Perches 	show_val_kb(m, "VmallocChunk:   ", 0ul);
1257e8a6304SDennis Zhou (Facebook) 	show_val_kb(m, "Percpu:         ", pcpu_nr_pages());
126e16e2d8eSJoe Perches 
1276a46079cSAndi Kleen #ifdef CONFIG_MEMORY_FAILURE
128e16e2d8eSJoe Perches 	seq_printf(m, "HardwareCorrupted: %5lu kB\n",
129e16e2d8eSJoe Perches 		   atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10));
1306a46079cSAndi Kleen #endif
131e16e2d8eSJoe Perches 
13279134171SAndrea Arcangeli #ifdef CONFIG_TRANSPARENT_HUGEPAGE
133e16e2d8eSJoe Perches 	show_val_kb(m, "AnonHugePages:  ",
134e16e2d8eSJoe Perches 		    global_node_page_state(NR_ANON_THPS) * HPAGE_PMD_NR);
135e16e2d8eSJoe Perches 	show_val_kb(m, "ShmemHugePages: ",
136e16e2d8eSJoe Perches 		    global_node_page_state(NR_SHMEM_THPS) * HPAGE_PMD_NR);
137e16e2d8eSJoe Perches 	show_val_kb(m, "ShmemPmdMapped: ",
138e16e2d8eSJoe Perches 		    global_node_page_state(NR_SHMEM_PMDMAPPED) * HPAGE_PMD_NR);
13979134171SAndrea Arcangeli #endif
140e16e2d8eSJoe Perches 
14147f8f929SPintu Kumar #ifdef CONFIG_CMA
142e16e2d8eSJoe Perches 	show_val_kb(m, "CmaTotal:       ", totalcma_pages);
143e16e2d8eSJoe Perches 	show_val_kb(m, "CmaFree:        ",
144c41f012aSMichal Hocko 		    global_zone_page_state(NR_FREE_CMA_PAGES));
14547f8f929SPintu Kumar #endif
146e1759c21SAlexey Dobriyan 
147e1759c21SAlexey Dobriyan 	hugetlb_report_meminfo(m);
148e1759c21SAlexey Dobriyan 
149e1759c21SAlexey Dobriyan 	arch_report_meminfo(m);
150e1759c21SAlexey Dobriyan 
151e1759c21SAlexey Dobriyan 	return 0;
152e1759c21SAlexey Dobriyan }
153e1759c21SAlexey Dobriyan 
154e1759c21SAlexey Dobriyan static int __init proc_meminfo_init(void)
155e1759c21SAlexey Dobriyan {
1563f3942acSChristoph Hellwig 	proc_create_single("meminfo", 0, NULL, meminfo_proc_show);
157e1759c21SAlexey Dobriyan 	return 0;
158e1759c21SAlexey Dobriyan }
159abaf3787SPaul Gortmaker fs_initcall(proc_meminfo_init);
160