linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Kefeng Wang <wangkefeng.wang@huawei.com>
To: David Hildenbrand <david@redhat.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Oscar Salvador <osalvador@suse.de>, Zi Yan <ziy@nvidia.com>
Cc: <linux-mm@kvack.org>, Matthew Wilcox <willy@infradead.org>
Subject: Re: [PATCH] mm: remove migration for HugePage in isolate_single_pageblock()
Date: Sat, 17 Aug 2024 14:13:28 +0800	[thread overview]
Message-ID: <a2b34157-1d77-4ea5-a2d1-274a78046839@huawei.com> (raw)
In-Reply-To: <fdd5735e-1765-491c-8f8d-dac0d68889a6@redhat.com>



On 2024/8/17 3:45, David Hildenbrand wrote:
> On 16.08.24 13:30, Kefeng Wang wrote:
>>
>>
>> On 2024/8/16 18:11, David Hildenbrand wrote:
>>> On 16.08.24 06:06, Kefeng Wang wrote:
>>>> The gigantic page size may larger than memory block size, so memory
>>>> offline always fails in this case after commit b2c9e2fbba32 ("mm: make
>>>> alloc_contig_range work at pageblock granularity"),
>>>>
>>>> offline_pages
>>>>     start_isolate_page_range
>>>>       start_isolate_page_range(isolate_before=true)
>>>>         isolate [isolate_start, isolate_start + pageblock_nr_pages)
>>>>       start_isolate_page_range(isolate_before=false)
>>>>         isolate [isolate_end - pageblock_nr_pages, isolate_end) 
>>>> pageblock
>>>>              __alloc_contig_migrate_range
>>>>             isolate_migratepages_range
>>>>               isolate_migratepages_block
>>>>                 isolate_or_dissolve_huge_page
>>>>                   if (hstate_is_gigantic(h))
>>>>                       return -ENOMEM;
>>>>
>>>> In fact, we don't need to migrate page in page range isolation, for
>>>> memory offline path, there is do_migrate_range() to move the pages.
>>>> For contig allocation, there is another __alloc_contig_migrate_range()
>>>> after isolation to migrate the pages. So fix issue by skipping the
>>>> __alloc_contig_migrate_range() in isolate_single_pageblock().

...

> 
> Please distill some of that in the patch description. Right now you only 
> talk about memory offlining and don't cover why alloc_contig_range() is 
> fine as well with this change.

Borrowing some word from Zi,


PageHuge(gigantic) can bigger than a pageblock, the gigantic PageHuge is 
freed as order-0. This means MIGRATE_ISOLATE pageblocks will get to the 
right free list after __alloc_contig_migrate_range(), the one after
start_isolate_page_range() for alloc_contig_range(), this is same as in
memory offline, it has own path to isolate/migrate used page and 
dissolve the free hugepages, so the migration code in 
isolate_single_pageblock() is not needed, let's cleanup it and which 
also fix the above the issue.

Please correct me or help to write better description, thanks.

> 
> Let me explore the details in the meantime ... :)
> 


  reply	other threads:[~2024-08-17  6:13 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-16  4:06 Kefeng Wang
2024-08-16  4:58 ` Andrew Morton
2024-08-16  6:10   ` Kefeng Wang
2024-08-16 10:11 ` David Hildenbrand
2024-08-16 11:30   ` Kefeng Wang
2024-08-16 15:06     ` Zi Yan
2024-08-16 20:12       ` David Hildenbrand
2024-08-16 21:16         ` Yu Zhao
2024-08-16 22:09         ` Zi Yan
2024-08-16 19:45     ` David Hildenbrand
2024-08-17  6:13       ` Kefeng Wang [this message]
2024-08-17 23:58         ` Zi Yan
2024-08-19  2:42           ` Kefeng Wang
2024-08-21  1:41           ` Andrew Morton

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=a2b34157-1d77-4ea5-a2d1-274a78046839@huawei.com \
    --to=wangkefeng.wang@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=david@redhat.com \
    --cc=linux-mm@kvack.org \
    --cc=osalvador@suse.de \
    --cc=willy@infradead.org \
    --cc=ziy@nvidia.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