blob: a77d2b2991998187843271a714ab241adacfc0b5 [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>
Alexey Dobriyane1759c22008-10-15 23:50:22 +040015#include <asm/page.h>
16#include <asm/pgtable.h>
17#include "internal.h"
18
19void __attribute__((weak)) arch_report_meminfo(struct seq_file *m)
20{
21}
22
23static int meminfo_proc_show(struct seq_file *m, void *v)
24{
25 struct sysinfo i;
26 unsigned long committed;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040027 struct vmalloc_info vmi;
28 long cached;
29 unsigned long pages[NR_LRU_LISTS];
30 int lru;
31
32/*
33 * display in kilobytes.
34 */
35#define K(x) ((x) << (PAGE_SHIFT - 10))
36 si_meminfo(&i);
37 si_swapinfo(&i);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070038 committed = percpu_counter_read_positive(&vm_committed_as);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040039
40 cached = global_page_state(NR_FILE_PAGES) -
Shaohua Li33806f02013-02-22 16:34:37 -080041 total_swapcache_pages() - i.bufferram;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040042 if (cached < 0)
43 cached = 0;
44
45 get_vmalloc_info(&vmi);
46
47 for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++)
48 pages[lru] = global_page_state(NR_LRU_BASE + lru);
49
50 /*
51 * Tagged format, for easy grepping and expansion.
52 */
53 seq_printf(m,
54 "MemTotal: %8lu kB\n"
55 "MemFree: %8lu kB\n"
56 "Buffers: %8lu kB\n"
57 "Cached: %8lu kB\n"
58 "SwapCached: %8lu kB\n"
59 "Active: %8lu kB\n"
60 "Inactive: %8lu kB\n"
61 "Active(anon): %8lu kB\n"
62 "Inactive(anon): %8lu kB\n"
63 "Active(file): %8lu kB\n"
64 "Inactive(file): %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040065 "Unevictable: %8lu kB\n"
66 "Mlocked: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040067#ifdef CONFIG_HIGHMEM
68 "HighTotal: %8lu kB\n"
69 "HighFree: %8lu kB\n"
70 "LowTotal: %8lu kB\n"
71 "LowFree: %8lu kB\n"
72#endif
David Howells8feae132009-01-08 12:04:47 +000073#ifndef CONFIG_MMU
74 "MmapCopy: %8lu kB\n"
75#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +040076 "SwapTotal: %8lu kB\n"
77 "SwapFree: %8lu kB\n"
78 "Dirty: %8lu kB\n"
79 "Writeback: %8lu kB\n"
80 "AnonPages: %8lu kB\n"
81 "Mapped: %8lu kB\n"
KOSAKI Motohiro4b021082009-09-21 17:01:33 -070082 "Shmem: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040083 "Slab: %8lu kB\n"
84 "SReclaimable: %8lu kB\n"
85 "SUnreclaim: %8lu kB\n"
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -070086 "KernelStack: %8lu kB\n"
Alexey Dobriyane1759c22008-10-15 23:50:22 +040087 "PageTables: %8lu kB\n"
88#ifdef CONFIG_QUICKLIST
89 "Quicklists: %8lu kB\n"
90#endif
91 "NFS_Unstable: %8lu kB\n"
92 "Bounce: %8lu kB\n"
93 "WritebackTmp: %8lu kB\n"
94 "CommitLimit: %8lu kB\n"
95 "Committed_AS: %8lu kB\n"
96 "VmallocTotal: %8lu kB\n"
97 "VmallocUsed: %8lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +020098 "VmallocChunk: %8lu kB\n"
99#ifdef CONFIG_MEMORY_FAILURE
Hugh Dickins370c28d2009-10-26 16:49:32 -0700100 "HardwareCorrupted: %5lu kB\n"
Andi Kleen6a460792009-09-16 11:50:15 +0200101#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800102#ifdef CONFIG_TRANSPARENT_HUGEPAGE
103 "AnonHugePages: %8lu kB\n"
104#endif
Andi Kleen6a460792009-09-16 11:50:15 +0200105 ,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400106 K(i.totalram),
107 K(i.freeram),
108 K(i.bufferram),
109 K(cached),
Shaohua Li33806f02013-02-22 16:34:37 -0800110 K(total_swapcache_pages()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400111 K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]),
112 K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]),
113 K(pages[LRU_ACTIVE_ANON]),
114 K(pages[LRU_INACTIVE_ANON]),
115 K(pages[LRU_ACTIVE_FILE]),
116 K(pages[LRU_INACTIVE_FILE]),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400117 K(pages[LRU_UNEVICTABLE]),
118 K(global_page_state(NR_MLOCK)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400119#ifdef CONFIG_HIGHMEM
120 K(i.totalhigh),
121 K(i.freehigh),
122 K(i.totalram-i.totalhigh),
123 K(i.freeram-i.freehigh),
124#endif
David Howells8feae132009-01-08 12:04:47 +0000125#ifndef CONFIG_MMU
David Howells33e5d7692009-04-02 16:56:32 -0700126 K((unsigned long) atomic_long_read(&mmap_pages_allocated)),
David Howells8feae132009-01-08 12:04:47 +0000127#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400128 K(i.totalswap),
129 K(i.freeswap),
130 K(global_page_state(NR_FILE_DIRTY)),
131 K(global_page_state(NR_WRITEBACK)),
Claudio Scordinob53fc7c2011-12-08 14:33:56 -0800132 K(global_page_state(NR_ANON_PAGES)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400133 K(global_page_state(NR_FILE_MAPPED)),
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700134 K(global_page_state(NR_SHMEM)),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400135 K(global_page_state(NR_SLAB_RECLAIMABLE) +
136 global_page_state(NR_SLAB_UNRECLAIMABLE)),
137 K(global_page_state(NR_SLAB_RECLAIMABLE)),
138 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700139 global_page_state(NR_KERNEL_STACK) * THREAD_SIZE / 1024,
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400140 K(global_page_state(NR_PAGETABLE)),
141#ifdef CONFIG_QUICKLIST
142 K(quicklist_total_size()),
143#endif
144 K(global_page_state(NR_UNSTABLE_NFS)),
145 K(global_page_state(NR_BOUNCE)),
146 K(global_page_state(NR_WRITEBACK_TEMP)),
Jerome Marchand00619bc2013-11-12 15:08:31 -0800147 K(vm_commit_limit()),
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400148 K(committed),
149 (unsigned long)VMALLOC_TOTAL >> 10,
150 vmi.used >> 10,
151 vmi.largest_chunk >> 10
Andi Kleen6a460792009-09-16 11:50:15 +0200152#ifdef CONFIG_MEMORY_FAILURE
Xishi Qiu293c07e2013-02-22 16:34:02 -0800153 ,atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10)
Andi Kleen6a460792009-09-16 11:50:15 +0200154#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800155#ifdef CONFIG_TRANSPARENT_HUGEPAGE
156 ,K(global_page_state(NR_ANON_TRANSPARENT_HUGEPAGES) *
157 HPAGE_PMD_NR)
158#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400159 );
160
161 hugetlb_report_meminfo(m);
162
163 arch_report_meminfo(m);
164
165 return 0;
166#undef K
167}
168
169static int meminfo_proc_open(struct inode *inode, struct file *file)
170{
171 return single_open(file, meminfo_proc_show, NULL);
172}
173
174static const struct file_operations meminfo_proc_fops = {
175 .open = meminfo_proc_open,
176 .read = seq_read,
177 .llseek = seq_lseek,
178 .release = single_release,
179};
180
181static int __init proc_meminfo_init(void)
182{
183 proc_create("meminfo", 0, NULL, &meminfo_proc_fops);
184 return 0;
185}
186module_init(proc_meminfo_init);