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/seq_file.h> 12e1759c21SAlexey Dobriyan #include <linux/swap.h> 13e1759c21SAlexey Dobriyan #include <linux/vmstat.h> 1460063497SArun Sharma #include <linux/atomic.h> 15db3808c1SJoonsoo Kim #include <linux/vmalloc.h> 1647f8f929SPintu Kumar #ifdef CONFIG_CMA 1747f8f929SPintu Kumar #include <linux/cma.h> 1847f8f929SPintu Kumar #endif 19e1759c21SAlexey Dobriyan #include <asm/page.h> 20e1759c21SAlexey Dobriyan #include "internal.h" 21e1759c21SAlexey Dobriyan 22e1759c21SAlexey Dobriyan void __attribute__((weak)) arch_report_meminfo(struct seq_file *m) 23e1759c21SAlexey Dobriyan { 24e1759c21SAlexey Dobriyan } 25e1759c21SAlexey Dobriyan 26e16e2d8eSJoe Perches static void show_val_kb(struct seq_file *m, const char *s, unsigned long num) 27e16e2d8eSJoe Perches { 28d1be35cbSAndrei Vagin seq_put_decimal_ull_width(m, s, num << (PAGE_SHIFT - 10), 8); 29e16e2d8eSJoe Perches seq_write(m, " kB\n", 4); 30e16e2d8eSJoe Perches } 31e16e2d8eSJoe Perches 32e1759c21SAlexey Dobriyan static int meminfo_proc_show(struct seq_file *m, void *v) 33e1759c21SAlexey Dobriyan { 34e1759c21SAlexey Dobriyan struct sysinfo i; 35e1759c21SAlexey Dobriyan unsigned long committed; 36e1759c21SAlexey Dobriyan long cached; 3734e431b0SRik van Riel long available; 38e1759c21SAlexey Dobriyan unsigned long pages[NR_LRU_LISTS]; 3961f94e18SVlastimil Babka unsigned long sreclaimable, sunreclaim; 40e1759c21SAlexey Dobriyan int lru; 41e1759c21SAlexey Dobriyan 42e1759c21SAlexey Dobriyan si_meminfo(&i); 43e1759c21SAlexey Dobriyan si_swapinfo(&i); 441455083cSFeng Tang committed = vm_memory_committed(); 45e1759c21SAlexey Dobriyan 4611fb9989SMel Gorman cached = global_node_page_state(NR_FILE_PAGES) - 4733806f06SShaohua Li total_swapcache_pages() - i.bufferram; 48e1759c21SAlexey Dobriyan if (cached < 0) 49e1759c21SAlexey Dobriyan cached = 0; 50e1759c21SAlexey Dobriyan 51e1759c21SAlexey Dobriyan for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++) 522f95ff90SMel Gorman pages[lru] = global_node_page_state(NR_LRU_BASE + lru); 53e1759c21SAlexey Dobriyan 54d02bd27bSIgor Redko available = si_mem_available(); 55d42f3245SRoman Gushchin sreclaimable = global_node_page_state_pages(NR_SLAB_RECLAIMABLE_B); 56d42f3245SRoman Gushchin sunreclaim = global_node_page_state_pages(NR_SLAB_UNRECLAIMABLE_B); 5734e431b0SRik van Riel 58e16e2d8eSJoe Perches show_val_kb(m, "MemTotal: ", i.totalram); 59e16e2d8eSJoe Perches show_val_kb(m, "MemFree: ", i.freeram); 60e16e2d8eSJoe Perches show_val_kb(m, "MemAvailable: ", available); 61e16e2d8eSJoe Perches show_val_kb(m, "Buffers: ", i.bufferram); 62e16e2d8eSJoe Perches show_val_kb(m, "Cached: ", cached); 63e16e2d8eSJoe Perches show_val_kb(m, "SwapCached: ", total_swapcache_pages()); 64e16e2d8eSJoe Perches show_val_kb(m, "Active: ", pages[LRU_ACTIVE_ANON] + 65e16e2d8eSJoe Perches pages[LRU_ACTIVE_FILE]); 66e16e2d8eSJoe Perches show_val_kb(m, "Inactive: ", pages[LRU_INACTIVE_ANON] + 67e16e2d8eSJoe Perches pages[LRU_INACTIVE_FILE]); 68e16e2d8eSJoe Perches show_val_kb(m, "Active(anon): ", pages[LRU_ACTIVE_ANON]); 69e16e2d8eSJoe Perches show_val_kb(m, "Inactive(anon): ", pages[LRU_INACTIVE_ANON]); 70e16e2d8eSJoe Perches show_val_kb(m, "Active(file): ", pages[LRU_ACTIVE_FILE]); 71e16e2d8eSJoe Perches show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]); 72e16e2d8eSJoe Perches show_val_kb(m, "Unevictable: ", pages[LRU_UNEVICTABLE]); 73c41f012aSMichal Hocko show_val_kb(m, "Mlocked: ", global_zone_page_state(NR_MLOCK)); 74e16e2d8eSJoe Perches 75e1759c21SAlexey Dobriyan #ifdef CONFIG_HIGHMEM 76e16e2d8eSJoe Perches show_val_kb(m, "HighTotal: ", i.totalhigh); 77e16e2d8eSJoe Perches show_val_kb(m, "HighFree: ", i.freehigh); 78e16e2d8eSJoe Perches show_val_kb(m, "LowTotal: ", i.totalram - i.totalhigh); 79e16e2d8eSJoe Perches show_val_kb(m, "LowFree: ", i.freeram - i.freehigh); 80e1759c21SAlexey Dobriyan #endif 81e16e2d8eSJoe Perches 828feae131SDavid Howells #ifndef CONFIG_MMU 83e16e2d8eSJoe Perches show_val_kb(m, "MmapCopy: ", 84e16e2d8eSJoe Perches (unsigned long)atomic_long_read(&mmap_pages_allocated)); 858feae131SDavid Howells #endif 86e16e2d8eSJoe Perches 87e16e2d8eSJoe Perches show_val_kb(m, "SwapTotal: ", i.totalswap); 88e16e2d8eSJoe Perches show_val_kb(m, "SwapFree: ", i.freeswap); 89f6498b77SJohannes Weiner #ifdef CONFIG_ZSWAP 90f6498b77SJohannes Weiner seq_printf(m, "Zswap: %8lu kB\n", 91f6498b77SJohannes Weiner (unsigned long)(zswap_pool_total_size >> 10)); 92f6498b77SJohannes Weiner seq_printf(m, "Zswapped: %8lu kB\n", 93f6498b77SJohannes Weiner (unsigned long)atomic_read(&zswap_stored_pages) << 94f6498b77SJohannes Weiner (PAGE_SHIFT - 10)); 95f6498b77SJohannes Weiner #endif 96e16e2d8eSJoe Perches show_val_kb(m, "Dirty: ", 97e16e2d8eSJoe Perches global_node_page_state(NR_FILE_DIRTY)); 98e16e2d8eSJoe Perches show_val_kb(m, "Writeback: ", 99e16e2d8eSJoe Perches global_node_page_state(NR_WRITEBACK)); 100e16e2d8eSJoe Perches show_val_kb(m, "AnonPages: ", 101e16e2d8eSJoe Perches global_node_page_state(NR_ANON_MAPPED)); 102e16e2d8eSJoe Perches show_val_kb(m, "Mapped: ", 103e16e2d8eSJoe Perches global_node_page_state(NR_FILE_MAPPED)); 104e16e2d8eSJoe Perches show_val_kb(m, "Shmem: ", i.sharedram); 10561f94e18SVlastimil Babka show_val_kb(m, "KReclaimable: ", sreclaimable + 10661f94e18SVlastimil Babka global_node_page_state(NR_KERNEL_MISC_RECLAIMABLE)); 10761f94e18SVlastimil Babka show_val_kb(m, "Slab: ", sreclaimable + sunreclaim); 10861f94e18SVlastimil Babka show_val_kb(m, "SReclaimable: ", sreclaimable); 10961f94e18SVlastimil Babka show_val_kb(m, "SUnreclaim: ", sunreclaim); 110e16e2d8eSJoe Perches seq_printf(m, "KernelStack: %8lu kB\n", 111991e7673SShakeel Butt global_node_page_state(NR_KERNEL_STACK_KB)); 112628d06a4SSami Tolvanen #ifdef CONFIG_SHADOW_CALL_STACK 113628d06a4SSami Tolvanen seq_printf(m, "ShadowCallStack:%8lu kB\n", 114991e7673SShakeel Butt global_node_page_state(NR_KERNEL_SCS_KB)); 115628d06a4SSami Tolvanen #endif 116e16e2d8eSJoe Perches show_val_kb(m, "PageTables: ", 117f0c0c115SShakeel Butt global_node_page_state(NR_PAGETABLE)); 118*ebc97a52SYosry Ahmed show_val_kb(m, "SecPageTables: ", 119*ebc97a52SYosry Ahmed global_node_page_state(NR_SECONDARY_PAGETABLE)); 120e16e2d8eSJoe Perches 1218d92890bSNeilBrown show_val_kb(m, "NFS_Unstable: ", 0); 122e16e2d8eSJoe Perches show_val_kb(m, "Bounce: ", 123c41f012aSMichal Hocko global_zone_page_state(NR_BOUNCE)); 124e16e2d8eSJoe Perches show_val_kb(m, "WritebackTmp: ", 125e16e2d8eSJoe Perches global_node_page_state(NR_WRITEBACK_TEMP)); 126e16e2d8eSJoe Perches show_val_kb(m, "CommitLimit: ", vm_commit_limit()); 127e16e2d8eSJoe Perches show_val_kb(m, "Committed_AS: ", committed); 128e16e2d8eSJoe Perches seq_printf(m, "VmallocTotal: %8lu kB\n", 129e16e2d8eSJoe Perches (unsigned long)VMALLOC_TOTAL >> 10); 13097105f0aSRoman Gushchin show_val_kb(m, "VmallocUsed: ", vmalloc_nr_pages()); 131e16e2d8eSJoe Perches show_val_kb(m, "VmallocChunk: ", 0ul); 1327e8a6304SDennis Zhou (Facebook) show_val_kb(m, "Percpu: ", pcpu_nr_pages()); 133e16e2d8eSJoe Perches 1346a46079cSAndi Kleen #ifdef CONFIG_MEMORY_FAILURE 135e16e2d8eSJoe Perches seq_printf(m, "HardwareCorrupted: %5lu kB\n", 136e16e2d8eSJoe Perches atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10)); 1376a46079cSAndi Kleen #endif 138e16e2d8eSJoe Perches 13979134171SAndrea Arcangeli #ifdef CONFIG_TRANSPARENT_HUGEPAGE 140e16e2d8eSJoe Perches show_val_kb(m, "AnonHugePages: ", 14169473e5dSMuchun Song global_node_page_state(NR_ANON_THPS)); 142e16e2d8eSJoe Perches show_val_kb(m, "ShmemHugePages: ", 14357b2847dSMuchun Song global_node_page_state(NR_SHMEM_THPS)); 144e16e2d8eSJoe Perches show_val_kb(m, "ShmemPmdMapped: ", 145a1528e21SMuchun Song global_node_page_state(NR_SHMEM_PMDMAPPED)); 14660fbf0abSSong Liu show_val_kb(m, "FileHugePages: ", 147bf9eceadSMuchun Song global_node_page_state(NR_FILE_THPS)); 14860fbf0abSSong Liu show_val_kb(m, "FilePmdMapped: ", 149380780e7SMuchun Song global_node_page_state(NR_FILE_PMDMAPPED)); 15079134171SAndrea Arcangeli #endif 151e16e2d8eSJoe Perches 15247f8f929SPintu Kumar #ifdef CONFIG_CMA 153e16e2d8eSJoe Perches show_val_kb(m, "CmaTotal: ", totalcma_pages); 154e16e2d8eSJoe Perches show_val_kb(m, "CmaFree: ", 155c41f012aSMichal Hocko global_zone_page_state(NR_FREE_CMA_PAGES)); 15647f8f929SPintu Kumar #endif 157e1759c21SAlexey Dobriyan 158e1759c21SAlexey Dobriyan hugetlb_report_meminfo(m); 159e1759c21SAlexey Dobriyan 160e1759c21SAlexey Dobriyan arch_report_meminfo(m); 161e1759c21SAlexey Dobriyan 162e1759c21SAlexey Dobriyan return 0; 163e1759c21SAlexey Dobriyan } 164e1759c21SAlexey Dobriyan 165e1759c21SAlexey Dobriyan static int __init proc_meminfo_init(void) 166e1759c21SAlexey Dobriyan { 1673f3942acSChristoph Hellwig proc_create_single("meminfo", 0, NULL, meminfo_proc_show); 168e1759c21SAlexey Dobriyan return 0; 169e1759c21SAlexey Dobriyan } 170abaf3787SPaul Gortmaker fs_initcall(proc_meminfo_init); 171