blob: 83720460c5bc74c51a9caae002495b4d59d8a4c3 [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;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040032 unsigned long pages[NR_LRU_LISTS];
33 int lru;
34
35/*
36 * display in kilobytes.
37 */
38#define K(x) ((x) << (PAGE_SHIFT - 10))
39 si_meminfo(&i);
40 si_swapinfo(&i);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070041 committed = percpu_counter_read_positive(&vm_committed_as);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040042
43 cached = global_page_state(NR_FILE_PAGES) -
Shaohua Li33806f02013-02-22 16:34:37 -080044 total_swapcache_pages() - i.bufferram;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040045 if (cached < 0)
46 cached = 0;
47
Alexey Dobriyane1759c22008-10-15 23:50:22 +040048 for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++)
49 pages[lru] = global_page_state(NR_LRU_BASE + lru);
50
Igor Redkod02bd272016-03-17 14:19:05 -070051 available = si_mem_available();
Rik van Riel34e431b2014-01-21 15:49:05 -080052
Alexey Dobriyane1759c22008-10-15 23:50:22 +040053 /*
54 * Tagged format, for easy grepping and expansion.
55 */
56 seq_printf(m,
57 "MemTotal: %8lu kB\n"
58 "MemFree: %8lu kB\n"
Rik van Riel34e431b2014-01-21 15:49:05 -080059 "MemAvailable: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040060 "Buffers: %8lu kB\n"
61 "Cached: %8lu kB\n"
62 "SwapCached: %8lu kB\n"
63 "Active: %8lu kB\n"
64 "Inactive: %8lu kB\n"
65 "Active(anon): %8lu kB\n"
66 "Inactive(anon): %8lu kB\n"
67 "Active(file): %8lu kB\n"
68 "Inactive(file): %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040069 "Unevictable: %8lu kB\n"
70 "Mlocked: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040071#ifdef CONFIG_HIGHMEM
72 "HighTotal: %8lu kB\n"
73 "HighFree: %8lu kB\n"
74 "LowTotal: %8lu kB\n"
75 "LowFree: %8lu kB\n"
76#endif
David Howells8feae132009-01-08 12:04:47 +000077#ifndef CONFIG_MMU
78 "MmapCopy: %8lu kB\n"
79#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +040080 "SwapTotal: %8lu kB\n"
81 "SwapFree: %8lu kB\n"
82 "Dirty: %8lu kB\n"
83 "Writeback: %8lu kB\n"
84 "AnonPages: %8lu kB\n"
85 "Mapped: %8lu kB\n"
KOSAKI Motohiro4b021082009-09-21 17:01:33 -070086 "Shmem: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040087 "Slab: %8lu kB\n"
88 "SReclaimable: %8lu kB\n"
89 "SUnreclaim: %8lu kB\n"
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -070090 "KernelStack: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040091 "PageTables: %8lu kB\n"
92#ifdef CONFIG_QUICKLIST
93 "Quicklists: %8lu kB\n"
94#endif
95 "NFS_Unstable: %8lu kB\n"
96 "Bounce: %8lu kB\n"
97 "WritebackTmp: %8lu kB\n"
98 "CommitLimit: %8lu kB\n"
99 "Committed_AS: %8lu kB\n"
100 "VmallocTotal: %8lu kB\n"
101 "VmallocUsed: %8lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +0200102 "VmallocChunk: %8lu kB\n"
103#ifdef CONFIG_MEMORY_FAILURE
Hugh Dickins370c28d2009-10-26 16:49:32 -0700104 "HardwareCorrupted: %5lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +0200105#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800106#ifdef CONFIG_TRANSPARENT_HUGEPAGE
107 "AnonHugePages: %8lu kB\n"
108#endif
Pintu Kumar47f8f922014-12-18 16:17:18 -0800109#ifdef CONFIG_CMA
110 "CmaTotal: %8lu kB\n"
111 "CmaFree: %8lu kB\n"
112#endif
Andi Kleen6a460792009-09-16 11:50:15 +0200113 ,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400114 K(i.totalram),
115 K(i.freeram),
Rik van Riel34e431b2014-01-21 15:49:05 -0800116 K(available),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400117 K(i.bufferram),
118 K(cached),
Shaohua Li33806f02013-02-22 16:34:37 -0800119 K(total_swapcache_pages()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400120 K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]),
121 K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]),
122 K(pages[LRU_ACTIVE_ANON]),
123 K(pages[LRU_INACTIVE_ANON]),
124 K(pages[LRU_ACTIVE_FILE]),
125 K(pages[LRU_INACTIVE_FILE]),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400126 K(pages[LRU_UNEVICTABLE]),
127 K(global_page_state(NR_MLOCK)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400128#ifdef CONFIG_HIGHMEM
129 K(i.totalhigh),
130 K(i.freehigh),
131 K(i.totalram-i.totalhigh),
132 K(i.freeram-i.freehigh),
133#endif
David Howells8feae132009-01-08 12:04:47 +0000134#ifndef CONFIG_MMU
David Howells33e5d7692009-04-02 16:56:32 -0700135 K((unsigned long) atomic_long_read(&mmap_pages_allocated)),
David Howells8feae132009-01-08 12:04:47 +0000136#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400137 K(i.totalswap),
138 K(i.freeswap),
139 K(global_page_state(NR_FILE_DIRTY)),
140 K(global_page_state(NR_WRITEBACK)),
Claudio Scordinob53fc7c2011-12-08 14:33:56 -0800141 K(global_page_state(NR_ANON_PAGES)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400142 K(global_page_state(NR_FILE_MAPPED)),
Rafael Aquinicc7452b2014-08-06 16:06:38 -0700143 K(i.sharedram),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400144 K(global_page_state(NR_SLAB_RECLAIMABLE) +
145 global_page_state(NR_SLAB_UNRECLAIMABLE)),
146 K(global_page_state(NR_SLAB_RECLAIMABLE)),
147 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700148 global_page_state(NR_KERNEL_STACK) * THREAD_SIZE / 1024,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400149 K(global_page_state(NR_PAGETABLE)),
150#ifdef CONFIG_QUICKLIST
151 K(quicklist_total_size()),
152#endif
153 K(global_page_state(NR_UNSTABLE_NFS)),
154 K(global_page_state(NR_BOUNCE)),
155 K(global_page_state(NR_WRITEBACK_TEMP)),
Jerome Marchand00619bc2013-11-12 15:08:31 -0800156 K(vm_commit_limit()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400157 K(committed),
158 (unsigned long)VMALLOC_TOTAL >> 10,
Linus Torvaldsa5ad88c2015-11-01 17:09:15 -0800159 0ul, // used to be vmalloc 'used'
160 0ul // used to be vmalloc 'largest_chunk'
Andi Kleen6a460792009-09-16 11:50:15 +0200161#ifdef CONFIG_MEMORY_FAILURE
Pintu Kumar47f8f922014-12-18 16:17:18 -0800162 , atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10)
Andi Kleen6a460792009-09-16 11:50:15 +0200163#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800164#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Pintu Kumar47f8f922014-12-18 16:17:18 -0800165 , K(global_page_state(NR_ANON_TRANSPARENT_HUGEPAGES) *
Andrea Arcangeli79134172011-01-13 15:46:58 -0800166 HPAGE_PMD_NR)
167#endif
Pintu Kumar47f8f922014-12-18 16:17:18 -0800168#ifdef CONFIG_CMA
169 , K(totalcma_pages)
170 , K(global_page_state(NR_FREE_CMA_PAGES))
171#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400172 );
173
174 hugetlb_report_meminfo(m);
175
176 arch_report_meminfo(m);
177
178 return 0;
179#undef K
180}
181
182static int meminfo_proc_open(struct inode *inode, struct file *file)
183{
184 return single_open(file, meminfo_proc_show, NULL);
185}
186
187static const struct file_operations meminfo_proc_fops = {
188 .open = meminfo_proc_open,
189 .read = seq_read,
190 .llseek = seq_lseek,
191 .release = single_release,
192};
193
194static int __init proc_meminfo_init(void)
195{
196 proc_create("meminfo", 0, NULL, &meminfo_proc_fops);
197 return 0;
198}
Paul Gortmakerabaf3782014-01-23 15:55:45 -0800199fs_initcall(proc_meminfo_init);