]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/show_mem.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 434
[thirdparty/linux.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>
454c63b0 9#include <linux/quicklist.h>
49abd8c2 10#include <linux/cma.h>
454c63b0 11
9af744d7 12void show_mem(unsigned int filter, nodemask_t *nodemask)
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");
9af744d7 18 show_free_areas(filter, nodemask);
454c63b0
JW
19
20 for_each_online_pgdat(pgdat) {
c78e9363 21 int zoneid;
454c63b0 22
c78e9363
MG
23 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
24 struct zone *zone = &pgdat->node_zones[zoneid];
25 if (!populated_zone(zone))
454c63b0
JW
26 continue;
27
c78e9363 28 total += zone->present_pages;
9705bea5 29 reserved += zone->present_pages - zone_managed_pages(zone);
454c63b0 30
c78e9363
MG
31 if (is_highmem_idx(zoneid))
32 highmem += zone->present_pages;
454c63b0 33 }
454c63b0
JW
34 }
35
f047f4f3 36 printk("%lu pages RAM\n", total);
c78e9363 37 printk("%lu pages HighMem/MovableOnly\n", highmem);
156408c0 38 printk("%lu pages reserved\n", reserved);
49abd8c2 39#ifdef CONFIG_CMA
49abd8c2 40 printk("%lu pages cma reserved\n", totalcma_pages);
49abd8c2 41#endif
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}