From: Matthew Wilcox <willy@infradead.org>
To: wonder_rock@126.com
Cc: akpm@linux-foundation.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] mm/page_alloc: merge two get_pfnblock_migratetype() into one
Date: Wed, 23 Nov 2022 15:45:05 +0000 [thread overview]
Message-ID: <Y35AAV2H4xiPZYed@casper.infradead.org> (raw)
In-Reply-To: <20221123134043.33896-1-wonder_rock@126.com>
On Wed, Nov 23, 2022 at 09:40:43PM +0800, wonder_rock@126.com wrote:
> From: Deyan Wang <wonder_rock@126.com>
>
> It is safe to get_pfnblock_migratetype() in critical section,
> so just call get_pfnblock_migratetype() once.
No, you don't understand. zone->lock is HOT and we want to avoid
calling get_pfnblock_migratetype() under the lock, if we can avoid it.
Which we usually can.
> Signed-off-by: Deyan Wang <wonder_rock@126.com>
> ---
> mm/page_alloc.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 6652df1f5cc8..c7ba9d65d1c0 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -1704,13 +1704,8 @@ static void __free_pages_ok(struct page *page, unsigned int order,
> if (!free_pages_prepare(page, order, true, fpi_flags))
> return;
>
> - migratetype = get_pfnblock_migratetype(page, pfn);
> -
> spin_lock_irqsave(&zone->lock, flags);
> - if (unlikely(has_isolate_pageblock(zone) ||
> - is_migrate_isolate(migratetype))) {
> - migratetype = get_pfnblock_migratetype(page, pfn);
> - }
> + migratetype = get_pfnblock_migratetype(page, pfn);
> __free_one_page(page, pfn, zone, order, migratetype, fpi_flags);
> spin_unlock_irqrestore(&zone->lock, flags);
>
> --
> 2.25.1
>
>
prev parent reply other threads:[~2022-11-23 15:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-23 13:40 [PATCH 1/1] mm/page_alloc: merge two get_pfnblock_migratetype() into one wonder_rock
2022-11-23 15:45 ` Matthew Wilcox [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=Y35AAV2H4xiPZYed@casper.infradead.org \
--to=willy@infradead.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=wonder_rock@126.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;
as well as URLs for NNTP newsgroup(s).