Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 1 | #include <linux/fs.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 2 | #include <linux/init.h> |
| 3 | #include <linux/kernel.h> |
| 4 | #include <linux/mm.h> |
Kirill A. Shutemov | cb900f4 | 2013-11-14 14:31:02 -0800 | [diff] [blame] | 5 | #include <linux/hugetlb.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 6 | #include <linux/mman.h> |
| 7 | #include <linux/mmzone.h> |
| 8 | #include <linux/proc_fs.h> |
| 9 | #include <linux/quicklist.h> |
| 10 | #include <linux/seq_file.h> |
| 11 | #include <linux/swap.h> |
| 12 | #include <linux/vmstat.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 13 | #include <linux/atomic.h> |
Joonsoo Kim | db3808c | 2013-04-29 15:07:28 -0700 | [diff] [blame] | 14 | #include <linux/vmalloc.h> |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 15 | #include <asm/page.h> |
| 16 | #include <asm/pgtable.h> |
| 17 | #include "internal.h" |
| 18 | |
| 19 | void __attribute__((weak)) arch_report_meminfo(struct seq_file *m) |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | static int meminfo_proc_show(struct seq_file *m, void *v) |
| 24 | { |
| 25 | struct sysinfo i; |
| 26 | unsigned long committed; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 27 | struct vmalloc_info vmi; |
| 28 | long cached; |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 29 | long available; |
| 30 | unsigned long pagecache; |
| 31 | unsigned long wmark_low = 0; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 32 | unsigned long pages[NR_LRU_LISTS]; |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 33 | struct zone *zone; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 34 | int lru; |
| 35 | |
| 36 | /* |
| 37 | * display in kilobytes. |
| 38 | */ |
| 39 | #define K(x) ((x) << (PAGE_SHIFT - 10)) |
| 40 | si_meminfo(&i); |
| 41 | si_swapinfo(&i); |
KOSAKI Motohiro | 00a62ce | 2009-04-30 15:08:51 -0700 | [diff] [blame] | 42 | committed = percpu_counter_read_positive(&vm_committed_as); |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 43 | |
| 44 | cached = global_page_state(NR_FILE_PAGES) - |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 45 | total_swapcache_pages() - i.bufferram; |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 46 | if (cached < 0) |
| 47 | cached = 0; |
| 48 | |
| 49 | get_vmalloc_info(&vmi); |
| 50 | |
| 51 | for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++) |
| 52 | pages[lru] = global_page_state(NR_LRU_BASE + lru); |
| 53 | |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 54 | for_each_zone(zone) |
| 55 | wmark_low += zone->watermark[WMARK_LOW]; |
| 56 | |
| 57 | /* |
| 58 | * Estimate the amount of memory available for userspace allocations, |
| 59 | * without causing swapping. |
| 60 | * |
| 61 | * Free memory cannot be taken below the low watermark, before the |
| 62 | * system starts swapping. |
| 63 | */ |
| 64 | available = i.freeram - wmark_low; |
| 65 | |
| 66 | /* |
| 67 | * Not all the page cache can be freed, otherwise the system will |
| 68 | * start swapping. Assume at least half of the page cache, or the |
| 69 | * low watermark worth of cache, needs to stay. |
| 70 | */ |
| 71 | pagecache = pages[LRU_ACTIVE_FILE] + pages[LRU_INACTIVE_FILE]; |
| 72 | pagecache -= min(pagecache / 2, wmark_low); |
| 73 | available += pagecache; |
| 74 | |
| 75 | /* |
Luiz Capitulino | f0b5664 | 2014-04-07 15:38:32 -0700 | [diff] [blame] | 76 | * Part of the reclaimable slab consists of items that are in use, |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 77 | * and cannot be freed. Cap this estimate at the low watermark. |
| 78 | */ |
| 79 | available += global_page_state(NR_SLAB_RECLAIMABLE) - |
| 80 | min(global_page_state(NR_SLAB_RECLAIMABLE) / 2, wmark_low); |
| 81 | |
| 82 | if (available < 0) |
| 83 | available = 0; |
| 84 | |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 85 | /* |
| 86 | * Tagged format, for easy grepping and expansion. |
| 87 | */ |
| 88 | seq_printf(m, |
| 89 | "MemTotal: %8lu kB\n" |
| 90 | "MemFree: %8lu kB\n" |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 91 | "MemAvailable: %8lu kB\n" |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 92 | "Buffers: %8lu kB\n" |
| 93 | "Cached: %8lu kB\n" |
| 94 | "SwapCached: %8lu kB\n" |
| 95 | "Active: %8lu kB\n" |
| 96 | "Inactive: %8lu kB\n" |
| 97 | "Active(anon): %8lu kB\n" |
| 98 | "Inactive(anon): %8lu kB\n" |
| 99 | "Active(file): %8lu kB\n" |
| 100 | "Inactive(file): %8lu kB\n" |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 101 | "Unevictable: %8lu kB\n" |
| 102 | "Mlocked: %8lu kB\n" |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 103 | #ifdef CONFIG_HIGHMEM |
| 104 | "HighTotal: %8lu kB\n" |
| 105 | "HighFree: %8lu kB\n" |
| 106 | "LowTotal: %8lu kB\n" |
| 107 | "LowFree: %8lu kB\n" |
| 108 | #endif |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 109 | #ifndef CONFIG_MMU |
| 110 | "MmapCopy: %8lu kB\n" |
| 111 | #endif |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 112 | "SwapTotal: %8lu kB\n" |
| 113 | "SwapFree: %8lu kB\n" |
| 114 | "Dirty: %8lu kB\n" |
| 115 | "Writeback: %8lu kB\n" |
| 116 | "AnonPages: %8lu kB\n" |
| 117 | "Mapped: %8lu kB\n" |
KOSAKI Motohiro | 4b02108 | 2009-09-21 17:01:33 -0700 | [diff] [blame] | 118 | "Shmem: %8lu kB\n" |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 119 | "Slab: %8lu kB\n" |
| 120 | "SReclaimable: %8lu kB\n" |
| 121 | "SUnreclaim: %8lu kB\n" |
KOSAKI Motohiro | c6a7f57 | 2009-09-21 17:01:32 -0700 | [diff] [blame] | 122 | "KernelStack: %8lu kB\n" |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 123 | "PageTables: %8lu kB\n" |
| 124 | #ifdef CONFIG_QUICKLIST |
| 125 | "Quicklists: %8lu kB\n" |
| 126 | #endif |
| 127 | "NFS_Unstable: %8lu kB\n" |
| 128 | "Bounce: %8lu kB\n" |
| 129 | "WritebackTmp: %8lu kB\n" |
| 130 | "CommitLimit: %8lu kB\n" |
| 131 | "Committed_AS: %8lu kB\n" |
| 132 | "VmallocTotal: %8lu kB\n" |
| 133 | "VmallocUsed: %8lu kB\n" |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 134 | "VmallocChunk: %8lu kB\n" |
| 135 | #ifdef CONFIG_MEMORY_FAILURE |
Hugh Dickins | 370c28d | 2009-10-26 16:49:32 -0700 | [diff] [blame] | 136 | "HardwareCorrupted: %5lu kB\n" |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 137 | #endif |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 138 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 139 | "AnonHugePages: %8lu kB\n" |
| 140 | #endif |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 141 | , |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 142 | K(i.totalram), |
| 143 | K(i.freeram), |
Rik van Riel | 34e431b | 2014-01-21 15:49:05 -0800 | [diff] [blame] | 144 | K(available), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 145 | K(i.bufferram), |
| 146 | K(cached), |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 147 | K(total_swapcache_pages()), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 148 | K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]), |
| 149 | K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]), |
| 150 | K(pages[LRU_ACTIVE_ANON]), |
| 151 | K(pages[LRU_INACTIVE_ANON]), |
| 152 | K(pages[LRU_ACTIVE_FILE]), |
| 153 | K(pages[LRU_INACTIVE_FILE]), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 154 | K(pages[LRU_UNEVICTABLE]), |
| 155 | K(global_page_state(NR_MLOCK)), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 156 | #ifdef CONFIG_HIGHMEM |
| 157 | K(i.totalhigh), |
| 158 | K(i.freehigh), |
| 159 | K(i.totalram-i.totalhigh), |
| 160 | K(i.freeram-i.freehigh), |
| 161 | #endif |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 162 | #ifndef CONFIG_MMU |
David Howells | 33e5d769 | 2009-04-02 16:56:32 -0700 | [diff] [blame] | 163 | K((unsigned long) atomic_long_read(&mmap_pages_allocated)), |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 164 | #endif |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 165 | K(i.totalswap), |
| 166 | K(i.freeswap), |
| 167 | K(global_page_state(NR_FILE_DIRTY)), |
| 168 | K(global_page_state(NR_WRITEBACK)), |
Claudio Scordino | b53fc7c | 2011-12-08 14:33:56 -0800 | [diff] [blame] | 169 | K(global_page_state(NR_ANON_PAGES)), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 170 | K(global_page_state(NR_FILE_MAPPED)), |
Rafael Aquini | cc7452b | 2014-08-06 16:06:38 -0700 | [diff] [blame] | 171 | K(i.sharedram), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 172 | K(global_page_state(NR_SLAB_RECLAIMABLE) + |
| 173 | global_page_state(NR_SLAB_UNRECLAIMABLE)), |
| 174 | K(global_page_state(NR_SLAB_RECLAIMABLE)), |
| 175 | K(global_page_state(NR_SLAB_UNRECLAIMABLE)), |
KOSAKI Motohiro | c6a7f57 | 2009-09-21 17:01:32 -0700 | [diff] [blame] | 176 | global_page_state(NR_KERNEL_STACK) * THREAD_SIZE / 1024, |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 177 | K(global_page_state(NR_PAGETABLE)), |
| 178 | #ifdef CONFIG_QUICKLIST |
| 179 | K(quicklist_total_size()), |
| 180 | #endif |
| 181 | K(global_page_state(NR_UNSTABLE_NFS)), |
| 182 | K(global_page_state(NR_BOUNCE)), |
| 183 | K(global_page_state(NR_WRITEBACK_TEMP)), |
Jerome Marchand | 00619bc | 2013-11-12 15:08:31 -0800 | [diff] [blame] | 184 | K(vm_commit_limit()), |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 185 | K(committed), |
| 186 | (unsigned long)VMALLOC_TOTAL >> 10, |
| 187 | vmi.used >> 10, |
| 188 | vmi.largest_chunk >> 10 |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 189 | #ifdef CONFIG_MEMORY_FAILURE |
Xishi Qiu | 293c07e | 2013-02-22 16:34:02 -0800 | [diff] [blame] | 190 | ,atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10) |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 191 | #endif |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 192 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 193 | ,K(global_page_state(NR_ANON_TRANSPARENT_HUGEPAGES) * |
| 194 | HPAGE_PMD_NR) |
| 195 | #endif |
Alexey Dobriyan | e1759c2 | 2008-10-15 23:50:22 +0400 | [diff] [blame] | 196 | ); |
| 197 | |
| 198 | hugetlb_report_meminfo(m); |
| 199 | |
| 200 | arch_report_meminfo(m); |
| 201 | |
| 202 | return 0; |
| 203 | #undef K |
| 204 | } |
| 205 | |
| 206 | static int meminfo_proc_open(struct inode *inode, struct file *file) |
| 207 | { |
| 208 | return single_open(file, meminfo_proc_show, NULL); |
| 209 | } |
| 210 | |
| 211 | static const struct file_operations meminfo_proc_fops = { |
| 212 | .open = meminfo_proc_open, |
| 213 | .read = seq_read, |
| 214 | .llseek = seq_lseek, |
| 215 | .release = single_release, |
| 216 | }; |
| 217 | |
| 218 | static int __init proc_meminfo_init(void) |
| 219 | { |
| 220 | proc_create("meminfo", 0, NULL, &meminfo_proc_fops); |
| 221 | return 0; |
| 222 | } |
Paul Gortmaker | abaf378 | 2014-01-23 15:55:45 -0800 | [diff] [blame] | 223 | fs_initcall(proc_meminfo_init); |