aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVishnu Pratap Singh <vishnu.ps@samsung.com>2014-12-18 19:17:21 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-12-18 22:08:10 -0500
commit49abd8c28046adf77c5ce1949549aa64d7221881 (patch)
tree713a9a2b8df92ecb774142cee88286db1cd59d5f /lib
parent47f8f9297d2247d65ee46d8403a73b30f8d0249b (diff)
lib/show_mem.c: add cma reserved information
Add cma reserved information which is currently shown as a part of total reserved only. This patch is continuation of our previous cma patches related to this. https://lkml.org/lkml/2014/10/20/64 https://lkml.org/lkml/2014/10/22/383 [akpm@linux-foundation.org: remove hopefully-unneeded ifdefs] Signed-off-by: Vishnu Pratap Singh <vishnu.ps@samsung.com> Cc: David Rientjes <rientjes@google.com> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Xishi Qiu <qiuxishi@huawei.com> Cc: Pintu Kumar <pintu.k@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/show_mem.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/show_mem.c b/lib/show_mem.c
index 5e256271b47b..7de89f4a36cf 100644
--- a/lib/show_mem.c
+++ b/lib/show_mem.c
@@ -8,6 +8,7 @@
8#include <linux/mm.h> 8#include <linux/mm.h>
9#include <linux/nmi.h> 9#include <linux/nmi.h>
10#include <linux/quicklist.h> 10#include <linux/quicklist.h>
11#include <linux/cma.h>
11 12
12void show_mem(unsigned int filter) 13void show_mem(unsigned int filter)
13{ 14{
@@ -38,7 +39,12 @@ void show_mem(unsigned int filter)
38 39
39 printk("%lu pages RAM\n", total); 40 printk("%lu pages RAM\n", total);
40 printk("%lu pages HighMem/MovableOnly\n", highmem); 41 printk("%lu pages HighMem/MovableOnly\n", highmem);
42#ifdef CONFIG_CMA
43 printk("%lu pages reserved\n", (reserved - totalcma_pages));
44 printk("%lu pages cma reserved\n", totalcma_pages);
45#else
41 printk("%lu pages reserved\n", reserved); 46 printk("%lu pages reserved\n", reserved);
47#endif
42#ifdef CONFIG_QUICKLIST 48#ifdef CONFIG_QUICKLIST
43 printk("%lu pages in pagetable cache\n", 49 printk("%lu pages in pagetable cache\n",
44 quicklist_total_size()); 50 quicklist_total_size());