linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: "John Stoffel" <john@stoffel.org>
To: Jerry <uulinux@gmail.com>
Cc: akpm@linux-foundation.org, zhuwei.lu@archermind.com,
	tianfu.huang@archermind.com, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm: negative left shift count when PAGE_SHIFT > 20
Date: Thu, 18 Jul 2013 13:13:44 -0400	[thread overview]
Message-ID: <20968.8776.742486.828059@quad.stoffel.home> (raw)
In-Reply-To: <1374166572-7988-1-git-send-email-uulinux@gmail.com>


Jerry> When PAGE_SHIFT > 20, the result of "20 - PAGE_SHIFT" is negative. The
Jerry> calculating here will generate an unexpected result. In addition, if
Jerry> PAGE_SHIFT > 20, The memory size represented by numentries was already
Jerry> integral multiple of 1MB.

Why this magic number of 20?  Please explain it better and replace it
was a #define that means something here.  


Jerry> Signed-off-by: Jerry <uulinux@gmail.com>
Jerry> ---
Jerry>  mm/page_alloc.c | 8 +++++---
Jerry>  1 file changed, 5 insertions(+), 3 deletions(-)

Jerry> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
Jerry> index b100255..cd41797 100644
Jerry> --- a/mm/page_alloc.c
Jerry> +++ b/mm/page_alloc.c
Jerry> @@ -5745,9 +5745,11 @@ void *__init alloc_large_system_hash(const char *tablename,
Jerry>  	if (!numentries) {
Jerry>  		/* round applicable memory size up to nearest megabyte */
Jerry>  		numentries = nr_kernel_pages;
Jerry> -		numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
Jerry> -		numentries >>= 20 - PAGE_SHIFT;
Jerry> -		numentries <<= 20 - PAGE_SHIFT;
Jerry> +		if (20 > PAGE_SHIFT) {
Jerry> +			numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
Jerry> +			numentries >>= 20 - PAGE_SHIFT;
Jerry> +			numentries <<= 20 - PAGE_SHIFT;
Jerry> +		}
 
Jerry>  		/* limit to 1 bucket per 2^scale bytes of low memory */
Jerry>  		if (scale > PAGE_SHIFT)
Jerry> -- 
Jerry> 1.8.1.5

Jerry> --
Jerry> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Jerry> the body of a message to majordomo@vger.kernel.org
Jerry> More majordomo info at  http://vger.kernel.org/majordomo-info.html
Jerry> Please read the FAQ at  http://www.tux.org/lkml/

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2013-07-18 17:13 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-18 16:56 Jerry
2013-07-18 17:13 ` John Stoffel [this message]
2013-07-18 17:21   ` Jerry
2013-07-18 21:39 ` Andrew Morton
2013-07-18 23:47   ` Jerry
2013-07-19 21:57     ` Andrew Morton
2013-07-20 17:16       ` Jerry
2013-07-20 17:12 Jerry Zhou

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=20968.8776.742486.828059@quad.stoffel.home \
    --to=john@stoffel.org \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=tianfu.huang@archermind.com \
    --cc=uulinux@gmail.com \
    --cc=zhuwei.lu@archermind.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