blob: 8c1f1bb1a5ce3fd1d9e757a87805fb3df638206c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexey Dobriyane1759c22008-10-15 23:50:22 +04002#include <linux/fs.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04003#include <linux/init.h>
4#include <linux/kernel.h>
5#include <linux/mm.h>
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006#include <linux/hugetlb.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04007#include <linux/mman.h>
8#include <linux/mmzone.h>
9#include <linux/proc_fs.h>
Dennis Zhou (Facebook)7e8a6302018-08-21 21:53:58 -070010#include <linux/percpu.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +040011#include <linux/seq_file.h>
12#include <linux/swap.h>
13#include <linux/vmstat.h>
Arun Sharma600634972011-07-26 16:09:06 -070014#include <linux/atomic.h>
Joonsoo Kimdb3808c2013-04-29 15:07:28 -070015#include <linux/vmalloc.h>
Pintu Kumar47f8f922014-12-18 16:17:18 -080016#ifdef CONFIG_CMA
17#include <linux/cma.h>
18#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +040019#include <asm/page.h>
20#include <asm/pgtable.h>
21#include "internal.h"
22
23void __attribute__((weak)) arch_report_meminfo(struct seq_file *m)
24{
25}
26
Joe Perchese16e2d82016-10-07 17:02:23 -070027static void show_val_kb(struct seq_file *m, const char *s, unsigned long num)
28{
Andrei Vagind1be35c2018-04-10 16:31:16 -070029 seq_put_decimal_ull_width(m, s, num << (PAGE_SHIFT - 10), 8);
Joe Perchese16e2d82016-10-07 17:02:23 -070030 seq_write(m, " kB\n", 4);
31}
32
Alexey Dobriyane1759c22008-10-15 23:50:22 +040033static int meminfo_proc_show(struct seq_file *m, void *v)
34{
35 struct sysinfo i;
36 unsigned long committed;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040037 long cached;
Rik van Riel34e431b2014-01-21 15:49:05 -080038 long available;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040039 unsigned long pages[NR_LRU_LISTS];
Vlastimil Babka61f94e12018-10-26 15:05:50 -070040 unsigned long sreclaimable, sunreclaim;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040041 int lru;
42
Alexey Dobriyane1759c22008-10-15 23:50:22 +040043 si_meminfo(&i);
44 si_swapinfo(&i);
KOSAKI Motohiro00a62ce2009-04-30 15:08:51 -070045 committed = percpu_counter_read_positive(&vm_committed_as);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040046
Mel Gorman11fb9982016-07-28 15:46:20 -070047 cached = global_node_page_state(NR_FILE_PAGES) -
Shaohua Li33806f02013-02-22 16:34:37 -080048 total_swapcache_pages() - i.bufferram;
Alexey Dobriyane1759c22008-10-15 23:50:22 +040049 if (cached < 0)
50 cached = 0;
51
Alexey Dobriyane1759c22008-10-15 23:50:22 +040052 for (lru = LRU_BASE; lru < NR_LRU_LISTS; lru++)
Mel Gorman2f95ff92016-08-11 15:32:57 -070053 pages[lru] = global_node_page_state(NR_LRU_BASE + lru);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040054
Igor Redkod02bd272016-03-17 14:19:05 -070055 available = si_mem_available();
Vlastimil Babka61f94e12018-10-26 15:05:50 -070056 sreclaimable = global_node_page_state(NR_SLAB_RECLAIMABLE);
57 sunreclaim = global_node_page_state(NR_SLAB_UNRECLAIMABLE);
Rik van Riel34e431b2014-01-21 15:49:05 -080058
Joe Perchese16e2d82016-10-07 17:02:23 -070059 show_val_kb(m, "MemTotal: ", i.totalram);
60 show_val_kb(m, "MemFree: ", i.freeram);
61 show_val_kb(m, "MemAvailable: ", available);
62 show_val_kb(m, "Buffers: ", i.bufferram);
63 show_val_kb(m, "Cached: ", cached);
64 show_val_kb(m, "SwapCached: ", total_swapcache_pages());
65 show_val_kb(m, "Active: ", pages[LRU_ACTIVE_ANON] +
66 pages[LRU_ACTIVE_FILE]);
67 show_val_kb(m, "Inactive: ", pages[LRU_INACTIVE_ANON] +
68 pages[LRU_INACTIVE_FILE]);
69 show_val_kb(m, "Active(anon): ", pages[LRU_ACTIVE_ANON]);
70 show_val_kb(m, "Inactive(anon): ", pages[LRU_INACTIVE_ANON]);
71 show_val_kb(m, "Active(file): ", pages[LRU_ACTIVE_FILE]);
72 show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]);
73 show_val_kb(m, "Unevictable: ", pages[LRU_UNEVICTABLE]);
Michal Hockoc41f0122017-09-06 16:23:36 -070074 show_val_kb(m, "Mlocked: ", global_zone_page_state(NR_MLOCK));
Joe Perchese16e2d82016-10-07 17:02:23 -070075
Alexey Dobriyane1759c22008-10-15 23:50:22 +040076#ifdef CONFIG_HIGHMEM
Joe Perchese16e2d82016-10-07 17:02:23 -070077 show_val_kb(m, "HighTotal: ", i.totalhigh);
78 show_val_kb(m, "HighFree: ", i.freehigh);
79 show_val_kb(m, "LowTotal: ", i.totalram - i.totalhigh);
80 show_val_kb(m, "LowFree: ", i.freeram - i.freehigh);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040081#endif
Joe Perchese16e2d82016-10-07 17:02:23 -070082
David Howells8feae132009-01-08 12:04:47 +000083#ifndef CONFIG_MMU
Joe Perchese16e2d82016-10-07 17:02:23 -070084 show_val_kb(m, "MmapCopy: ",
85 (unsigned long)atomic_long_read(&mmap_pages_allocated));
David Howells8feae132009-01-08 12:04:47 +000086#endif
Joe Perchese16e2d82016-10-07 17:02:23 -070087
88 show_val_kb(m, "SwapTotal: ", i.totalswap);
89 show_val_kb(m, "SwapFree: ", i.freeswap);
90 show_val_kb(m, "Dirty: ",
91 global_node_page_state(NR_FILE_DIRTY));
92 show_val_kb(m, "Writeback: ",
93 global_node_page_state(NR_WRITEBACK));
94 show_val_kb(m, "AnonPages: ",
95 global_node_page_state(NR_ANON_MAPPED));
96 show_val_kb(m, "Mapped: ",
97 global_node_page_state(NR_FILE_MAPPED));
98 show_val_kb(m, "Shmem: ", i.sharedram);
Vlastimil Babka61f94e12018-10-26 15:05:50 -070099 show_val_kb(m, "KReclaimable: ", sreclaimable +
100 global_node_page_state(NR_KERNEL_MISC_RECLAIMABLE));
101 show_val_kb(m, "Slab: ", sreclaimable + sunreclaim);
102 show_val_kb(m, "SReclaimable: ", sreclaimable);
103 show_val_kb(m, "SUnreclaim: ", sunreclaim);
Joe Perchese16e2d82016-10-07 17:02:23 -0700104 seq_printf(m, "KernelStack: %8lu kB\n",
Michal Hockoc41f0122017-09-06 16:23:36 -0700105 global_zone_page_state(NR_KERNEL_STACK_KB));
Joe Perchese16e2d82016-10-07 17:02:23 -0700106 show_val_kb(m, "PageTables: ",
Michal Hockoc41f0122017-09-06 16:23:36 -0700107 global_zone_page_state(NR_PAGETABLE));
Joe Perchese16e2d82016-10-07 17:02:23 -0700108
109 show_val_kb(m, "NFS_Unstable: ",
110 global_node_page_state(NR_UNSTABLE_NFS));
111 show_val_kb(m, "Bounce: ",
Michal Hockoc41f0122017-09-06 16:23:36 -0700112 global_zone_page_state(NR_BOUNCE));
Joe Perchese16e2d82016-10-07 17:02:23 -0700113 show_val_kb(m, "WritebackTmp: ",
114 global_node_page_state(NR_WRITEBACK_TEMP));
115 show_val_kb(m, "CommitLimit: ", vm_commit_limit());
116 show_val_kb(m, "Committed_AS: ", committed);
117 seq_printf(m, "VmallocTotal: %8lu kB\n",
118 (unsigned long)VMALLOC_TOTAL >> 10);
Roman Gushchin97105f02019-07-11 21:00:13 -0700119 show_val_kb(m, "VmallocUsed: ", vmalloc_nr_pages());
Joe Perchese16e2d82016-10-07 17:02:23 -0700120 show_val_kb(m, "VmallocChunk: ", 0ul);
Dennis Zhou (Facebook)7e8a6302018-08-21 21:53:58 -0700121 show_val_kb(m, "Percpu: ", pcpu_nr_pages());
Joe Perchese16e2d82016-10-07 17:02:23 -0700122
Andi Kleen6a460792009-09-16 11:50:15 +0200123#ifdef CONFIG_MEMORY_FAILURE
Joe Perchese16e2d82016-10-07 17:02:23 -0700124 seq_printf(m, "HardwareCorrupted: %5lu kB\n",
125 atomic_long_read(&num_poisoned_pages) << (PAGE_SHIFT - 10));
Andi Kleen6a460792009-09-16 11:50:15 +0200126#endif
Joe Perchese16e2d82016-10-07 17:02:23 -0700127
Andrea Arcangeli79134172011-01-13 15:46:58 -0800128#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Joe Perchese16e2d82016-10-07 17:02:23 -0700129 show_val_kb(m, "AnonHugePages: ",
130 global_node_page_state(NR_ANON_THPS) * HPAGE_PMD_NR);
131 show_val_kb(m, "ShmemHugePages: ",
132 global_node_page_state(NR_SHMEM_THPS) * HPAGE_PMD_NR);
133 show_val_kb(m, "ShmemPmdMapped: ",
134 global_node_page_state(NR_SHMEM_PMDMAPPED) * HPAGE_PMD_NR);
Kirill A. Shutemov2be5fbf2019-10-18 20:20:27 -0700135 show_val_kb(m, "FileHugePages: ",
Song Liu60fbf0a2019-09-23 15:37:54 -0700136 global_node_page_state(NR_FILE_THPS) * HPAGE_PMD_NR);
Kirill A. Shutemov2be5fbf2019-10-18 20:20:27 -0700137 show_val_kb(m, "FilePmdMapped: ",
Song Liu60fbf0a2019-09-23 15:37:54 -0700138 global_node_page_state(NR_FILE_PMDMAPPED) * HPAGE_PMD_NR);
Andrea Arcangeli79134172011-01-13 15:46:58 -0800139#endif
Joe Perchese16e2d82016-10-07 17:02:23 -0700140
Pintu Kumar47f8f922014-12-18 16:17:18 -0800141#ifdef CONFIG_CMA
Joe Perchese16e2d82016-10-07 17:02:23 -0700142 show_val_kb(m, "CmaTotal: ", totalcma_pages);
143 show_val_kb(m, "CmaFree: ",
Michal Hockoc41f0122017-09-06 16:23:36 -0700144 global_zone_page_state(NR_FREE_CMA_PAGES));
Pintu Kumar47f8f922014-12-18 16:17:18 -0800145#endif
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400146
147 hugetlb_report_meminfo(m);
148
149 arch_report_meminfo(m);
150
151 return 0;
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400152}
153
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400154static int __init proc_meminfo_init(void)
155{
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200156 proc_create_single("meminfo", 0, NULL, meminfo_proc_show);
Alexey Dobriyane1759c22008-10-15 23:50:22 +0400157 return 0;
158}
Paul Gortmakerabaf3782014-01-23 15:55:45 -0800159fs_initcall(proc_meminfo_init);