Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 2 | #include <linux/fs.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 3 | #include <linux/init.h> |
| 4 | #include <linux/kernel.h> |
| 5 | #include <linux/mm.h> |
Kirill A. Shutemov | cb900f4 | 2013-11-14 14:31:02 -0800 | [diff] [blame] | 6 | #include <linux/hugetlb.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 7 | #include <linux/mman.h> |
| 8 | #include <linux/mmzone.h> |
| 9 | #include <linux/proc_fs.h> |
Dennis Zhou (Facebook) | 7e8a630 | 2018-08-21 21:53:58 -0700 | [diff] [blame] | 10 | #include <linux/percpu.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 11 | #include <linux/seq_file.h> |
| 12 | #include <linux/swap.h> |
| 13 | #include <linux/vmstat.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 14 | #include <linux/atomic.h> |
Joonsoo Kim | db3808c | 2013-04-29 15:07:28 -0700 | [diff] [blame] | 15 | #include <linux/vmalloc.h> |
Pintu Kumar | 47f8f92 | 2014-12-18 16:17:18 -0800 | [diff] [blame] | 16 | #ifdef CONFIG_CMA |
| 17 | #include <linux/cma.h> |
| 18 | #endif |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 19 | #include <asm/page.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 20 | #include "internal.h" |
| 21 | |
| 22 | void __attribute__((weak)) arch_report_meminfo(struct seq_file *m) |
| 23 | { |
| 24 | } |
| 25 | |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 26 | static void show_val_kb(struct seq_file *m, const char *s, unsigned long num) |
| 27 | { |
Andrei Vagin | d1be35c | 2018-04-10 16:31:16 -0700 | [diff] [blame] | 28 | seq_put_decimal_ull_width(m, s, num << (PAGE_SHIFT - 10), 8); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 29 | seq_write(m, " kB\n", 4); |
| 30 | } |
| 31 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 32 | static int meminfo_proc_show(struct seq_file *m, void *v) |
| 33 | { |
| 34 | struct sysinfo i; |
| 35 | unsigned long committed; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 36 | long cached; |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 37 | long available; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 38 | unsigned long pages[NR_LRU_LISTS]; |
Vlastimil Babka | 61f94e1 | 2018-10-26 15:05:50 -0700 | [diff] [blame] | 39 | unsigned long sreclaimable, sunreclaim; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 40 | int lru; |
| 41 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 42 | si_meminfo(&i); |
| 43 | si_swapinfo(&i); |
Feng Tang | 1455083 | 2020-08-06 23:23:03 -0700 | [diff] [blame] | 44 | committed = vm_memory_committed(); |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 45 | |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 46 | cached = global_node_page_state(NR_FILE_PAGES) - |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 47 | total_swapcache_pages() - i.bufferram; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 48 | if (cached < 0) |
| 49 | cached = 0; |
| 50 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 51 | for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++) |
Mel Gorman | 2f95ff9 | 2016-08-11 15:32:57 -0700 | [diff] [blame] | 52 | pages[lru] = global_node_page_state(NR_LRU_BASE + lru); |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 53 | |
Igor Redko | d02bd27 | 2016-03-17 14:19:05 -0700 | [diff] [blame] | 54 | available = si_mem_available(); |
Roman Gushchin | d42f324 | 2020-08-06 23:20:39 -0700 | [diff] [blame] | 55 | sreclaimable = global_node_page_state_pages(NR_SLAB_RECLAIMABLE_B); |
| 56 | sunreclaim = global_node_page_state_pages(NR_SLAB_UNRECLAIMABLE_B); |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 57 | |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 58 | show_val_kb(m, "MemTotal: ", i.totalram); |
| 59 | show_val_kb(m, "MemFree: ", i.freeram); |
| 60 | show_val_kb(m, "MemAvailable: ", available); |
| 61 | show_val_kb(m, "Buffers: ", i.bufferram); |
| 62 | show_val_kb(m, "Cached: ", cached); |
| 63 | show_val_kb(m, "SwapCached: ", total_swapcache_pages()); |
| 64 | show_val_kb(m, "Active: ", pages[LRU_ACTIVE_ANON] + |
| 65 | pages[LRU_ACTIVE_FILE]); |
| 66 | show_val_kb(m, "Inactive: ", pages[LRU_INACTIVE_ANON] + |
| 67 | pages[LRU_INACTIVE_FILE]); |
| 68 | show_val_kb(m, "Active(anon): ", pages[LRU_ACTIVE_ANON]); |
| 69 | show_val_kb(m, "Inactive(anon): ", pages[LRU_INACTIVE_ANON]); |
| 70 | show_val_kb(m, "Active(file): ", pages[LRU_ACTIVE_FILE]); |
| 71 | show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]); |
| 72 | show_val_kb(m, "Unevictable: ", pages[LRU_UNEVICTABLE]); |
Michal Hocko | c41f012 | 2017-09-06 16:23:36 -0700 | [diff] [blame] | 73 | show_val_kb(m, "Mlocked: ", global_zone_page_state(NR_MLOCK)); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 74 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 75 | #ifdef CONFIG_HIGHMEM |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 76 | show_val_kb(m, "HighTotal: ", i.totalhigh); |
| 77 | show_val_kb(m, "HighFree: ", i.freehigh); |
| 78 | show_val_kb(m, "LowTotal: ", i.totalram - i.totalhigh); |
| 79 | show_val_kb(m, "LowFree: ", i.freeram - i.freehigh); |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 80 | #endif |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 81 | |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 82 | #ifndef CONFIG_MMU |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 83 | show_val_kb(m, "MmapCopy: ", |
| 84 | (unsigned long)atomic_long_read(&mmap_pages_allocated)); |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 85 | #endif |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 86 | |
| 87 | show_val_kb(m, "SwapTotal: ", i.totalswap); |
| 88 | show_val_kb(m, "SwapFree: ", i.freeswap); |
| 89 | show_val_kb(m, "Dirty: ", |
| 90 | global_node_page_state(NR_FILE_DIRTY)); |
| 91 | show_val_kb(m, "Writeback: ", |
| 92 | global_node_page_state(NR_WRITEBACK)); |
| 93 | show_val_kb(m, "AnonPages: ", |
| 94 | global_node_page_state(NR_ANON_MAPPED)); |
| 95 | show_val_kb(m, "Mapped: ", |
| 96 | global_node_page_state(NR_FILE_MAPPED)); |
| 97 | show_val_kb(m, "Shmem: ", i.sharedram); |
Vlastimil Babka | 61f94e1 | 2018-10-26 15:05:50 -0700 | [diff] [blame] | 98 | show_val_kb(m, "KReclaimable: ", sreclaimable + |
| 99 | global_node_page_state(NR_KERNEL_MISC_RECLAIMABLE)); |
| 100 | show_val_kb(m, "Slab: ", sreclaimable + sunreclaim); |
| 101 | show_val_kb(m, "SReclaimable: ", sreclaimable); |
| 102 | show_val_kb(m, "SUnreclaim: ", sunreclaim); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 103 | seq_printf(m, "KernelStack: %8lu kB\n", |
Shakeel Butt | 991e767 | 2020-08-06 23:21:37 -0700 | [diff] [blame] | 104 | global_node_page_state(NR_KERNEL_STACK_KB)); |
Sami Tolvanen | 628d06a | 2020-04-27 09:00:08 -0700 | [diff] [blame] | 105 | #ifdef CONFIG_SHADOW_CALL_STACK |
| 106 | seq_printf(m, "ShadowCallStack:%8lu kB\n", |
Shakeel Butt | 991e767 | 2020-08-06 23:21:37 -0700 | [diff] [blame] | 107 | global_node_page_state(NR_KERNEL_SCS_KB)); |
Sami Tolvanen | 628d06a | 2020-04-27 09:00:08 -0700 | [diff] [blame] | 108 | #endif |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 109 | show_val_kb(m, "PageTables: ", |
Shakeel Butt | f0c0c11 | 2020-12-14 19:07:17 -0800 | [diff] [blame] | 110 | global_node_page_state(NR_PAGETABLE)); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 111 | |
NeilBrown | 8d92890 | 2020-06-01 21:48:21 -0700 | [diff] [blame] | 112 | show_val_kb(m, "NFS_Unstable: ", 0); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 113 | show_val_kb(m, "Bounce: ", |
Michal Hocko | c41f012 | 2017-09-06 16:23:36 -0700 | [diff] [blame] | 114 | global_zone_page_state(NR_BOUNCE)); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 115 | show_val_kb(m, "WritebackTmp: ", |
| 116 | global_node_page_state(NR_WRITEBACK_TEMP)); |
| 117 | show_val_kb(m, "CommitLimit: ", vm_commit_limit()); |
| 118 | show_val_kb(m, "Committed_AS: ", committed); |
| 119 | seq_printf(m, "VmallocTotal: %8lu kB\n", |
| 120 | (unsigned long)VMALLOC_TOTAL >> 10); |
Roman Gushchin | 97105f0 | 2019-07-11 21:00:13 -0700 | [diff] [blame] | 121 | show_val_kb(m, "VmallocUsed: ", vmalloc_nr_pages()); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 122 | show_val_kb(m, "VmallocChunk: ", 0ul); |
Dennis Zhou (Facebook) | 7e8a630 | 2018-08-21 21:53:58 -0700 | [diff] [blame] | 123 | show_val_kb(m, "Percpu: ", pcpu_nr_pages()); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 124 | |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 125 | #ifdef CONFIG_MEMORY_FAILURE |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 126 | seq_printf(m, "HardwareCorrupted: %5lu kB\n", |
| 127 | atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10)); |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 128 | #endif |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 129 | |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 130 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 131 | show_val_kb(m, "AnonHugePages: ", |
Muchun Song | 69473e5 | 2021-02-24 12:03:23 -0800 | [diff] [blame] | 132 | global_node_page_state(NR_ANON_THPS)); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 133 | show_val_kb(m, "ShmemHugePages: ", |
Muchun Song | 57b2847 | 2021-02-24 12:03:31 -0800 | [diff] [blame] | 134 | global_node_page_state(NR_SHMEM_THPS)); |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 135 | show_val_kb(m, "ShmemPmdMapped: ", |
Muchun Song | a1528e2 | 2021-02-24 12:03:35 -0800 | [diff] [blame] | 136 | global_node_page_state(NR_SHMEM_PMDMAPPED)); |
Kirill A. Shutemov | 2be5fbf | 2019-10-18 20:20:27 -0700 | [diff] [blame] | 137 | show_val_kb(m, "FileHugePages: ", |
Muchun Song | bf9ecea | 2021-02-24 12:03:27 -0800 | [diff] [blame] | 138 | global_node_page_state(NR_FILE_THPS)); |
Kirill A. Shutemov | 2be5fbf | 2019-10-18 20:20:27 -0700 | [diff] [blame] | 139 | show_val_kb(m, "FilePmdMapped: ", |
Muchun Song | 380780e | 2021-02-24 12:03:39 -0800 | [diff] [blame] | 140 | global_node_page_state(NR_FILE_PMDMAPPED)); |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 141 | #endif |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 142 | |
Pintu Kumar | 47f8f92 | 2014-12-18 16:17:18 -0800 | [diff] [blame] | 143 | #ifdef CONFIG_CMA |
Joe Perches | e16e2d8 | 2016-10-07 17:02:23 -0700 | [diff] [blame] | 144 | show_val_kb(m, "CmaTotal: ", totalcma_pages); |
| 145 | show_val_kb(m, "CmaFree: ", |
Michal Hocko | c41f012 | 2017-09-06 16:23:36 -0700 | [diff] [blame] | 146 | global_zone_page_state(NR_FREE_CMA_PAGES)); |
Pintu Kumar | 47f8f92 | 2014-12-18 16:17:18 -0800 | [diff] [blame] | 147 | #endif |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 148 | |
| 149 | hugetlb_report_meminfo(m); |
| 150 | |
| 151 | arch_report_meminfo(m); |
| 152 | |
| 153 | return 0; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 154 | } |
| 155 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 156 | static int __init proc_meminfo_init(void) |
| 157 | { |
Christoph Hellwig | 3f3942a | 2018-05-15 15:57:23 +0200 | [diff] [blame] | 158 | proc_create_single("meminfo", 0, NULL, meminfo_proc_show); |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 159 | return 0; |
| 160 | } |
Paul Gortmaker | abaf378 | 2014-01-23 15:55:45 -0800 | [diff] [blame] | 161 | fs_initcall(proc_meminfo_init); |