linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: zhong jiang <zhongjiang@huawei.com>
Cc: mhocko@kernel.org, vbabka@suse.cz, linux-mm@kvack.org
Subject: Re: [mmotm] mm/page_owner: align with pageblock_nr_pages
Date: Tue, 5 Dec 2017 16:58:26 -0800	[thread overview]
Message-ID: <20171205165826.aed52f6b6e5ca4cd7994ce31@linux-foundation.org> (raw)
In-Reply-To: <1512395284-13588-1-git-send-email-zhongjiang@huawei.com>

On Mon, 4 Dec 2017 21:48:04 +0800 zhong jiang <zhongjiang@huawei.com> wrote:

> Currently, init_pages_in_zone walk the zone in pageblock_nr_pages
> steps.  MAX_ORDER_NR_PAGES is possible to have holes when
> CONFIG_HOLES_IN_ZONE is set. it is likely to be different between
> MAX_ORDER_NR_PAGES and pageblock_nr_pages. if we skip the size of
> MAX_ORDER_NR_PAGES, it will result in the second 2M memroy leak.
> 
> meanwhile, the change will make the code consistent. because the
> entire function is based on the pageblock_nr_pages steps.
> 
> ...
>
> --- a/mm/page_owner.c
> +++ b/mm/page_owner.c
> @@ -527,7 +527,7 @@ static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
>  	 */
>  	for (; pfn < end_pfn; ) {
>  		if (!pfn_valid(pfn)) {
> -			pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
> +			pfn = ALIGN(pfn + 1, pageblock_nr_pages);
>  			continue;
>  		}

I *think* Michal and Vlastimil will be OK with this as-newly-presented.
Guys, can you please have another think?

--
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:[~2017-12-06  0:58 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-04 13:48 zhong jiang
2017-12-06  0:58 ` Andrew Morton [this message]
2017-12-06  2:44   ` zhong jiang
2017-12-06  8:03     ` Michal Hocko

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=20171205165826.aed52f6b6e5ca4cd7994ce31@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@kernel.org \
    --cc=vbabka@suse.cz \
    --cc=zhongjiang@huawei.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