This patch adds cma reserved information which is currently shown as a part of total reserved only. This patch is continuation of our previos cma patches related to this. https://lkml.org/lkml/2014/10/20/64 https://lkml.org/lkml/2014/10/22/383
Signed-off-by: Vishnu Pratap Singh <vishnu...@samsung.com> --- lib/show_mem.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/show_mem.c b/lib/show_mem.c index 0922579..a0e50d7 100644 --- a/lib/show_mem.c +++ b/lib/show_mem.c @@ -8,6 +8,9 @@ #include <linux/mm.h> #include <linux/nmi.h> #include <linux/quicklist.h> +#ifdef CONFIG_CMA +#include <linux/cma.h> +#endif void show_mem(unsigned int filter) { @@ -38,7 +41,12 @@ void show_mem(unsigned int filter) printk("%lu pages RAM\n", total); printk("%lu pages HighMem/MovableOnly\n", highmem); +#ifdef CONFIG_CMA + printk("%lu pages reserved\n", (reserved - totalcma_pages)); + printk("%lu pages cma reserved\n", totalcma_pages); +#else printk("%lu pages reserved\n", reserved); +#endif #ifdef CONFIG_QUICKLIST printk("%lu pages in pagetable cache\n", quicklist_total_size()); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/