linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Vlastimil Babka <vbabka@suse.cz>
To: mcsmonk <mcsmonk@gmail.com>, linux-mm@kvack.org
Cc: Mike Rapoport <rppt@linux.ibm.com>,
	"Dennis Zhou (Facebook)" <dennisszhou@gmail.com>,
	Tejun Heo <tj@kernel.org>
Subject: Re: [PATCH] mm/percpu.c: Modify calculation of size of populated bitmap of chunk for memory allocation
Date: Thu, 3 Sep 2020 15:46:33 +0200	[thread overview]
Message-ID: <a314b5ff-599f-b580-9bf2-e6c9b95183ea@suse.cz> (raw)
In-Reply-To: <20200903124116.1668-1-mcsmonk@gmail.com>

On 9/3/20 2:41 PM, mcsmonk wrote:
> From: Sunghyun Jin <mcsmonk@gmail.com>
> 
> Variable populated, which is a member of struct pcpu_chunk, is used as a
> unit of size of unsigned long.
> However, size of populated is miscounted. So, I fix this minor part.

+CC folks who touched it last

Nice find! Did you observe e.g. a panic that can be used in the commit log? Or
were we always lucky thanks to alignment?
Is there perhaps a commit that introduced the bug and we can use it as Fixes:?
My brief look suggests 8ab16c43ea79 ("percpu: change the number of pages marked
in the first_chunk pop bitmap")

Thanks!

> Signed-off-by: Sunghyun Jin <mcsmonk@gmail.com>
> ---
>  mm/percpu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/mm/percpu.c b/mm/percpu.c
> index f4709629e6de..1ed1a349eab8 100644
> --- a/mm/percpu.c
> +++ b/mm/percpu.c
> @@ -1316,7 +1316,7 @@ static struct pcpu_chunk * __init pcpu_alloc_first_chunk(unsigned long tmp_addr,
>  
>  	/* allocate chunk */
>  	alloc_size = sizeof(struct pcpu_chunk) +
> -		BITS_TO_LONGS(region_size >> PAGE_SHIFT);
> +		BITS_TO_LONGS(region_size >> PAGE_SHIFT) * sizeof(unsigned long);
>  	chunk = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
>  	if (!chunk)
>  		panic("%s: Failed to allocate %zu bytes\n", __func__,
> 



  reply	other threads:[~2020-09-03 13:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-03 12:41 mcsmonk
2020-09-03 13:46 ` Vlastimil Babka [this message]
2020-09-03 15:46   ` Dennis 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=a314b5ff-599f-b580-9bf2-e6c9b95183ea@suse.cz \
    --to=vbabka@suse.cz \
    --cc=dennisszhou@gmail.com \
    --cc=linux-mm@kvack.org \
    --cc=mcsmonk@gmail.com \
    --cc=rppt@linux.ibm.com \
    --cc=tj@kernel.org \
    /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