blob: b7c72311ad0c88673546aa910c32cdc5214f96b2 [file] [log] [blame]
Johannes Weiner454c63b2008-07-25 19:46:07 -07001/*
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
David Rientjesb2b755b2011-03-24 15:18:15 -070012void show_mem(unsigned int filter)
Johannes Weiner454c63b2008-07-25 19:46:07 -070013{
14 pg_data_t *pgdat;
15 unsigned long total = 0, reserved = 0, shared = 0,
16 nonshared = 0, highmem = 0;
17
Amerigo Wangf047f4f2010-03-05 13:42:24 -080018 printk("Mem-Info:\n");
David Rientjes7bf02ea2011-05-24 17:11:16 -070019 show_free_areas(filter);
Johannes Weiner454c63b2008-07-25 19:46:07 -070020
David Rientjes4b59e6c2013-04-29 15:06:11 -070021 if (filter & SHOW_MEM_FILTER_PAGE_COUNT)
22 return;
23
Johannes Weiner454c63b2008-07-25 19:46:07 -070024 for_each_online_pgdat(pgdat) {
25 unsigned long i, flags;
26
27 pgdat_resize_lock(pgdat, &flags);
28 for (i = 0; i < pgdat->node_spanned_pages; i++) {
29 struct page *page;
30 unsigned long pfn = pgdat->node_start_pfn + i;
31
32 if (unlikely(!(i % MAX_ORDER_NR_PAGES)))
33 touch_nmi_watchdog();
34
35 if (!pfn_valid(pfn))
36 continue;
37
38 page = pfn_to_page(pfn);
39
40 if (PageHighMem(page))
41 highmem++;
42
43 if (PageReserved(page))
44 reserved++;
45 else if (page_count(page) == 1)
46 nonshared++;
47 else if (page_count(page) > 1)
48 shared += page_count(page) - 1;
49
50 total++;
51 }
52 pgdat_resize_unlock(pgdat, &flags);
53 }
54
Amerigo Wangf047f4f2010-03-05 13:42:24 -080055 printk("%lu pages RAM\n", total);
Johannes Weiner454c63b2008-07-25 19:46:07 -070056#ifdef CONFIG_HIGHMEM
Amerigo Wangf047f4f2010-03-05 13:42:24 -080057 printk("%lu pages HighMem\n", highmem);
Johannes Weiner454c63b2008-07-25 19:46:07 -070058#endif
Amerigo Wangf047f4f2010-03-05 13:42:24 -080059 printk("%lu pages reserved\n", reserved);
60 printk("%lu pages shared\n", shared);
61 printk("%lu pages non-shared\n", nonshared);
Johannes Weiner454c63b2008-07-25 19:46:07 -070062#ifdef CONFIG_QUICKLIST
Amerigo Wangf047f4f2010-03-05 13:42:24 -080063 printk("%lu pages in pagetable cache\n",
Johannes Weiner454c63b2008-07-25 19:46:07 -070064 quicklist_total_size());
65#endif
66}