]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - lib/show_mem.c
fs/proc/meminfo.c: include cma info in proc/meminfo
[mirror_ubuntu-bionic-kernel.git] / lib / show_mem.c
CommitLineData
454c63b0
JW
1/*
2 * Generic show_mem() implementation
3 *
4 * Copyright (C) 2008 Johannes Weiner <hannes@saeurebad.de>
5 * All code subject to the GPL version 2.
6 */
7
8#include <linux/mm.h>
9#include <linux/nmi.h>
10#include <linux/quicklist.h>
11
b2b755b5 12void show_mem(unsigned int filter)
454c63b0
JW
13{
14 pg_data_t *pgdat;
c78e9363 15 unsigned long total = 0, reserved = 0, highmem = 0;
454c63b0 16
f047f4f3 17 printk("Mem-Info:\n");
7bf02ea2 18 show_free_areas(filter);
454c63b0
JW
19
20 for_each_online_pgdat(pgdat) {
c78e9363
MG
21 unsigned long flags;
22 int zoneid;
454c63b0
JW
23
24 pgdat_resize_lock(pgdat, &flags);
c78e9363
MG
25 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
26 struct zone *zone = &pgdat->node_zones[zoneid];
27 if (!populated_zone(zone))
454c63b0
JW
28 continue;
29
c78e9363 30 total += zone->present_pages;
bc127bda 31 reserved += zone->present_pages - zone->managed_pages;
454c63b0 32
c78e9363
MG
33 if (is_highmem_idx(zoneid))
34 highmem += zone->present_pages;
454c63b0
JW
35 }
36 pgdat_resize_unlock(pgdat, &flags);
37 }
38
f047f4f3 39 printk("%lu pages RAM\n", total);
c78e9363 40 printk("%lu pages HighMem/MovableOnly\n", highmem);
f047f4f3 41 printk("%lu pages reserved\n", reserved);
454c63b0 42#ifdef CONFIG_QUICKLIST
f047f4f3 43 printk("%lu pages in pagetable cache\n",
454c63b0
JW
44 quicklist_total_size());
45#endif
25487d73
XQ
46#ifdef CONFIG_MEMORY_FAILURE
47 printk("%lu pages hwpoisoned\n", atomic_long_read(&num_poisoned_pages));
48#endif
454c63b0 49}