From: Miaohe Lin <linmiaohe@huawei.com>
To: David Hildenbrand <david@redhat.com>, <akpm@linux-foundation.org>,
<willy@infradead.org>
Cc: <linux-mm@kvack.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm/huge_memory: ensure huge_zero_folio won't have large_rmappable flag set
Date: Thu, 19 Sep 2024 10:13:17 +0800 [thread overview]
Message-ID: <5d817637-00b3-dd0a-4d3c-cf550fcff440@huawei.com> (raw)
In-Reply-To: <2875de57-6e11-4cfe-a0a6-36879ca96091@redhat.com>
On 2024/9/17 19:59, David Hildenbrand wrote:
> On 14.09.24 03:53, Miaohe Lin wrote:
>> Ensure huge_zero_folio won't have large_rmappable flag set. So it can be
>> reported as thp,zero correctly through stable_page_flags().
>>
>> Fixes: 5691753d73a2 ("mm: convert huge_zero_page to huge_zero_folio")
>> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>> ---
>> mm/huge_memory.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
>> index 2a73efea02d7..4e34b7f89daf 100644
>> --- a/mm/huge_memory.c
>> +++ b/mm/huge_memory.c
>> @@ -218,6 +218,8 @@ static bool get_huge_zero_page(void)
>> count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
>> return false;
>> }
>> + /* Ensure zero folio won't have large_rmappable flag set. */
>> + folio_clear_large_rmappable(zero_folio);
>> preempt_disable();
>> if (cmpxchg(&huge_zero_folio, NULL, zero_folio)) {
>> preempt_enable();
>
> Doesn't that rather fix
>
> commit 4c8763e84aae4d04d94b35aca9f7db6a8930ad77
> Author: Ran Xiaokai <ran.xiaokai@zte.com.cn>
> Date: Fri Jul 5 10:43:43 2024 +0000
>
> kpageflags: detect isolated KPF_THP folios
>
>
> ?
>
> We could fix it simply by changing the order of checks in there.
Sure, we can fix it like above but huge zero folio shouldn't have large_rmappable flag set anyway.
>
> It makes sense, though. The huge zeropage is not tracked via the rmap ... ever. Mapcounts etc are unused. But clearing that flag is just ugly.
>
> I wonder if the real problem lies in using folio_alloc() here, and that we should be never setting the flag in the first place .... Yes, we want a folio, but not really an rmappable one.
There was a similar problem. Hugetlb folio has large_rmappable flag set through using folio_alloc. And that cause kernel panic when migrating hugetlb folio.
Please see commit 1390a3334a48 ("mm/hugetlb: fix kernel NULL pointer dereference when migrating hugetlb folio").
Thanks.
.
>
> ... Willy, what would be your take?
>
prev parent reply other threads:[~2024-09-19 2:13 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-14 1:53 Miaohe Lin
2024-09-17 11:59 ` David Hildenbrand
2024-09-19 2:13 ` Miaohe Lin [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=5d817637-00b3-dd0a-4d3c-cf550fcff440@huawei.com \
--to=linmiaohe@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=willy@infradead.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