blob: df4661abadc40fa406f9b36c3dfd344179e90eb8 [file] [log] [blame]
Alexey Dobriyane1759c22008-10-15 23:50:22 +04001#include <linux/fs.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04002#include <linux/init.h>
3#include <linux/kernel.h>
4#include <linux/mm.h>
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005#include <linux/hugetlb.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04006#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 Sharma600634972011-07-26 16:09:06 -070013#include <linux/atomic.h>
Joonsoo Kimdb3808c2013-04-29 15:07:28 -070014#include <linux/vmalloc.h>
Pintu Kumar47f8f922014-12-18 16:17:18 -080015#ifdef CONFIG_CMA
16#include <linux/cma.h>
17#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +040018#include <asm/page.h>
19#include <asm/pgtable.h>
20#include "internal.h"
21
22void __attribute__((weak)) arch_report_meminfo(struct seq_file *m)
23{
24}
25
26static int meminfo_proc_show(struct seq_file *m, void *v)
27{
28 struct sysinfo i;
29 unsigned long committed;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040030 long cached;
Rik van Riel34e431b2014-01-21 15:49:05 -080031 long available;
32 unsigned long pagecache;
33 unsigned long wmark_low = 0;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040034 unsigned long pages[NR_LRU_LISTS];
Rik van Riel34e431b2014-01-21 15:49:05 -080035 struct zone *zone;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040036 int lru;
37
38/*
39 * display in kilobytes.
40 */
41#define K(x) ((x) << (PAGE_SHIFT - 10))
42 si_meminfo(&i);
43 si_swapinfo(&i);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070044 committed = percpu_counter_read_positive(&vm_committed_as);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040045
46 cached = global_page_state(NR_FILE_PAGES) -
Shaohua Li33806f02013-02-22 16:34:37 -080047 total_swapcache_pages() - i.bufferram;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040048 if (cached < 0)
49 cached = 0;
50
Alexey Dobriyane1759c22008-10-15 23:50:22 +040051 for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++)
52 pages[lru] = global_page_state(NR_LRU_BASE + lru);
53
Rik van Riel34e431b2014-01-21 15:49:05 -080054 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.
Rik van Riel34e431b2014-01-21 15:49:05 -080060 */
Johannes Weiner84ad5802016-01-14 15:20:18 -080061 available = i.freeram - totalreserve_pages;
Rik van Riel34e431b2014-01-21 15:49:05 -080062
63 /*
64 * Not all the page cache can be freed, otherwise the system will
65 * start swapping. Assume at least half of the page cache, or the
66 * low watermark worth of cache, needs to stay.
67 */
68 pagecache = pages[LRU_ACTIVE_FILE] + pages[LRU_INACTIVE_FILE];
69 pagecache -= min(pagecache / 2, wmark_low);
70 available += pagecache;
71
72 /*
Luiz Capitulinof0b56642014-04-07 15:38:32 -070073 * Part of the reclaimable slab consists of items that are in use,
Rik van Riel34e431b2014-01-21 15:49:05 -080074 * and cannot be freed. Cap this estimate at the low watermark.
75 */
76 available += global_page_state(NR_SLAB_RECLAIMABLE) -
77 min(global_page_state(NR_SLAB_RECLAIMABLE) / 2, wmark_low);
78
79 if (available < 0)
80 available = 0;
81
Alexey Dobriyane1759c22008-10-15 23:50:22 +040082 /*
83 * Tagged format, for easy grepping and expansion.
84 */
85 seq_printf(m,
86 "MemTotal: %8lu kB\n"
87 "MemFree: %8lu kB\n"
Rik van Riel34e431b2014-01-21 15:49:05 -080088 "MemAvailable: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040089 "Buffers: %8lu kB\n"
90 "Cached: %8lu kB\n"
91 "SwapCached: %8lu kB\n"
92 "Active: %8lu kB\n"
93 "Inactive: %8lu kB\n"
94 "Active(anon): %8lu kB\n"
95 "Inactive(anon): %8lu kB\n"
96 "Active(file): %8lu kB\n"
97 "Inactive(file): %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040098 "Unevictable: %8lu kB\n"
99 "Mlocked: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400100#ifdef CONFIG_HIGHMEM
101 "HighTotal: %8lu kB\n"
102 "HighFree: %8lu kB\n"
103 "LowTotal: %8lu kB\n"
104 "LowFree: %8lu kB\n"
105#endif
David Howells8feae132009-01-08 12:04:47 +0000106#ifndef CONFIG_MMU
107 "MmapCopy: %8lu kB\n"
108#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400109 "SwapTotal: %8lu kB\n"
110 "SwapFree: %8lu kB\n"
111 "Dirty: %8lu kB\n"
112 "Writeback: %8lu kB\n"
113 "AnonPages: %8lu kB\n"
114 "Mapped: %8lu kB\n"
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700115 "Shmem: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400116 "Slab: %8lu kB\n"
117 "SReclaimable: %8lu kB\n"
118 "SUnreclaim: %8lu kB\n"
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700119 "KernelStack: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400120 "PageTables: %8lu kB\n"
121#ifdef CONFIG_QUICKLIST
122 "Quicklists: %8lu kB\n"
123#endif
124 "NFS_Unstable: %8lu kB\n"
125 "Bounce: %8lu kB\n"
126 "WritebackTmp: %8lu kB\n"
127 "CommitLimit: %8lu kB\n"
128 "Committed_AS: %8lu kB\n"
129 "VmallocTotal: %8lu kB\n"
130 "VmallocUsed: %8lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +0200131 "VmallocChunk: %8lu kB\n"
132#ifdef CONFIG_MEMORY_FAILURE
Hugh Dickins370c28d2009-10-26 16:49:32 -0700133 "HardwareCorrupted: %5lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +0200134#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800135#ifdef CONFIG_TRANSPARENT_HUGEPAGE
136 "AnonHugePages: %8lu kB\n"
137#endif
Pintu Kumar47f8f922014-12-18 16:17:18 -0800138#ifdef CONFIG_CMA
139 "CmaTotal: %8lu kB\n"
140 "CmaFree: %8lu kB\n"
141#endif
Andi Kleen6a460792009-09-16 11:50:15 +0200142 ,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400143 K(i.totalram),
144 K(i.freeram),
Rik van Riel34e431b2014-01-21 15:49:05 -0800145 K(available),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400146 K(i.bufferram),
147 K(cached),
Shaohua Li33806f02013-02-22 16:34:37 -0800148 K(total_swapcache_pages()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400149 K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]),
150 K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]),
151 K(pages[LRU_ACTIVE_ANON]),
152 K(pages[LRU_INACTIVE_ANON]),
153 K(pages[LRU_ACTIVE_FILE]),
154 K(pages[LRU_INACTIVE_FILE]),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400155 K(pages[LRU_UNEVICTABLE]),
156 K(global_page_state(NR_MLOCK)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400157#ifdef CONFIG_HIGHMEM
158 K(i.totalhigh),
159 K(i.freehigh),
160 K(i.totalram-i.totalhigh),
161 K(i.freeram-i.freehigh),
162#endif
David Howells8feae132009-01-08 12:04:47 +0000163#ifndef CONFIG_MMU
David Howells33e5d7692009-04-02 16:56:32 -0700164 K((unsigned long) atomic_long_read(&mmap_pages_allocated)),
David Howells8feae132009-01-08 12:04:47 +0000165#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400166 K(i.totalswap),
167 K(i.freeswap),
168 K(global_page_state(NR_FILE_DIRTY)),
169 K(global_page_state(NR_WRITEBACK)),
Claudio Scordinob53fc7c2011-12-08 14:33:56 -0800170 K(global_page_state(NR_ANON_PAGES)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400171 K(global_page_state(NR_FILE_MAPPED)),
Rafael Aquinicc7452b2014-08-06 16:06:38 -0700172 K(i.sharedram),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400173 K(global_page_state(NR_SLAB_RECLAIMABLE) +
174 global_page_state(NR_SLAB_UNRECLAIMABLE)),
175 K(global_page_state(NR_SLAB_RECLAIMABLE)),
176 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700177 global_page_state(NR_KERNEL_STACK) * THREAD_SIZE / 1024,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400178 K(global_page_state(NR_PAGETABLE)),
179#ifdef CONFIG_QUICKLIST
180 K(quicklist_total_size()),
181#endif
182 K(global_page_state(NR_UNSTABLE_NFS)),
183 K(global_page_state(NR_BOUNCE)),
184 K(global_page_state(NR_WRITEBACK_TEMP)),
Jerome Marchand00619bc2013-11-12 15:08:31 -0800185 K(vm_commit_limit()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400186 K(committed),
187 (unsigned long)VMALLOC_TOTAL >> 10,
Linus Torvaldsa5ad88c2015-11-01 17:09:15 -0800188 0ul, // used to be vmalloc 'used'
189 0ul // used to be vmalloc 'largest_chunk'
Andi Kleen6a460792009-09-16 11:50:15 +0200190#ifdef CONFIG_MEMORY_FAILURE
Pintu Kumar47f8f922014-12-18 16:17:18 -0800191 , atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10)
Andi Kleen6a460792009-09-16 11:50:15 +0200192#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800193#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Pintu Kumar47f8f922014-12-18 16:17:18 -0800194 , K(global_page_state(NR_ANON_TRANSPARENT_HUGEPAGES) *
Andrea Arcangeli79134172011-01-13 15:46:58 -0800195 HPAGE_PMD_NR)
196#endif
Pintu Kumar47f8f922014-12-18 16:17:18 -0800197#ifdef CONFIG_CMA
198 , K(totalcma_pages)
199 , K(global_page_state(NR_FREE_CMA_PAGES))
200#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400201 );
202
203 hugetlb_report_meminfo(m);
204
205 arch_report_meminfo(m);
206
207 return 0;
208#undef K
209}
210
211static int meminfo_proc_open(struct inode *inode, struct file *file)
212{
213 return single_open(file, meminfo_proc_show, NULL);
214}
215
216static const struct file_operations meminfo_proc_fops = {
217 .open = meminfo_proc_open,
218 .read = seq_read,
219 .llseek = seq_lseek,
220 .release = single_release,
221};
222
223static int __init proc_meminfo_init(void)
224{
225 proc_create("meminfo", 0, NULL, &meminfo_proc_fops);
226 return 0;
227}
Paul Gortmakerabaf3782014-01-23 15:55:45 -0800228fs_initcall(proc_meminfo_init);