From: Andrew Morton <akpm@linux-foundation.org>
To: Vishnu Pratap Singh <vishnu.ps@samsung.com>
Cc: linux@rasmusvillemoes.dk, riel@redhat.com,
isimatu.yasuaki@jp.fujitsu.com, aquini@redhat.com,
linux-kernel@vger.kernel.org, cpgs@samsung.com,
vishu13285@gmail.com, pintu.k@samsung.com, rohit.kr@samsung.com
Subject: Re: [PATCH] lib/show_mem.c: correct reserved memory calculation
Date: Mon, 20 Jul 2015 15:48:16 -0700 [thread overview]
Message-ID: <20150720154816.685e70f38e6d0238e3efef91@linux-foundation.org> (raw)
In-Reply-To: <1437383665-29874-1-git-send-email-vishnu.ps@samsung.com>
On Mon, 20 Jul 2015 14:44:25 +0530 Vishnu Pratap Singh <vishnu.ps@samsung.com> wrote:
> CMA reserved memory is not part of total reserved memory.
> Currently when we print the total reserve memory it considers
> cma as part of reserve memory and do minus of totalcma_pages
> from reserved, which is wrong. In cases where total reserved
> is less than cma reserved we will get negative values & while
> printing we print as unsigned and we will get a very large value.
>
> Below is the show mem output on X86 ubuntu based system where
> CMA reserved is 100MB (25600 pages) & total reserved is ~40MB(10316 pages).
> And reserve memory shows a large value because of this bug.
>
> Before:
> [ 127.066430] 898908 pages RAM
> [ 127.066432] 671682 pages HighMem/MovableOnly
> [ 127.066434] 4294952012 pages reserved
> [ 127.066436] 25600 pages cma reserved
>
> After:
> [ 44.663129] 898908 pages RAM
> [ 44.663130] 671682 pages HighMem/MovableOnly
> [ 44.663130] 10316 pages reserved
> [ 44.663131] 25600 pages cma reserved
>
> Also this patch change printk to pr_info.
The pr_info change was irritating - it makes it quite hard to see the
functional change. Please don't mix changes like this, unless the
unrelated changes are trivial and don't hamper review.
This is what the patch actually does:
--- a/lib/show_mem.c~lib-show_memc-correct-reserved-memory-calculation
+++ a/lib/show_mem.c
@@ -38,11 +38,9 @@ void show_mem(unsigned int filter)
printk("%lu pages RAM\n", total);
printk("%lu pages HighMem/MovableOnly\n", highmem);
+ printk("%lu pages reserved\n", reserved);
#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",
_
prev parent reply other threads:[~2015-07-20 22:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-20 9:14 Vishnu Pratap Singh
2015-07-20 22:48 ` Andrew Morton [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150720154816.685e70f38e6d0238e3efef91@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=aquini@redhat.com \
--cc=cpgs@samsung.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=pintu.k@samsung.com \
--cc=riel@redhat.com \
--cc=rohit.kr@samsung.com \
--cc=vishnu.ps@samsung.com \
--cc=vishu13285@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®