From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2184C54EE9 for ; Wed, 28 Sep 2022 01:27:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232322AbiI1B1D (ORCPT ); Tue, 27 Sep 2022 21:27:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56460 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229951AbiI1B1A (ORCPT ); Tue, 27 Sep 2022 21:27:00 -0400 Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B79B5F50AC for ; Tue, 27 Sep 2022 18:26:58 -0700 (PDT) Date: Wed, 28 Sep 2022 10:26:47 +0900 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1664328416; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=x7w9hMtZzSqY/+vnUHeGaTGZuWwa+Id45UwBndGp9jY=; b=gstieOT4B9NdSihJ/vyXeif0qNkFsbKnYspxIeq6R///HM7BFxYFD4Rz4Xwfx2agzcFbPR a7tf78Vsx7tETl/e8arjLmrkS6buo4CyWwWsEI5QpYvmzr/jVpEZEu/WFsQCQ/N6fW8Wid +/MrJpEESyQPWbnc5OcDAsfE5I+MGfM= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Naoya Horiguchi To: Miaohe Lin Cc: linux-mm@kvack.org, Andrew Morton , David Hildenbrand , Mike Kravetz , Yang Shi , Oscar Salvador , Muchun Song , Jane Chu , Naoya Horiguchi , linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/4] mm,hwpoison,hugetlb,memory_hotplug: hotremove memory section with hwpoisoned hugepage Message-ID: <20220928012647.GA597297@u2004.lan> References: <20220921091359.25889-1-naoya.horiguchi@linux.dev> <20220921091359.25889-2-naoya.horiguchi@linux.dev> <91a4759f-88e4-f9ac-aff5-41d2db5ecfdd@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <91a4759f-88e4-f9ac-aff5-41d2db5ecfdd@huawei.com> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Sep 24, 2022 at 07:43:16PM +0800, Miaohe Lin wrote: > On 2022/9/21 17:13, Naoya Horiguchi wrote: > > From: Naoya Horiguchi > > > > HWPoisoned page is not supposed to be accessed once marked, but currently > > such accesses can happen during memory hotremove because do_migrate_range() > > can be called before dissolve_free_huge_pages() is called. > > > > Clear HPageMigratable for hwpoisoned hugepages to prevent them from being > > migrated. This should be done in hugetlb_lock to avoid race against > > isolate_hugetlb(). > > > > get_hwpoison_huge_page() needs to have a flag to show it's called from > > unpoison to take refcount of hwpoisoned hugepages, so add it. > > > > Reported-by: Miaohe Lin > > Signed-off-by: Naoya Horiguchi > > Thanks for your work, Naoya. Maybe something to improve below. > > > --- > > ChangeLog v2 -> v3 > > - move to the approach of clearing HPageMigratable instead of shifting > > dissolve_free_huge_pages. > > --- > > include/linux/hugetlb.h | 4 ++-- > > mm/hugetlb.c | 4 ++-- > > mm/memory-failure.c | 12 ++++++++++-- > > 3 files changed, 14 insertions(+), 6 deletions(-) > > > > > > > @@ -7267,7 +7267,7 @@ int get_hwpoison_huge_page(struct page *page, bool *hugetlb) > > *hugetlb = true; > > if (HPageFreed(page)) > > ret = 0; > > - else if (HPageMigratable(page)) > > + else if (HPageMigratable(page) || unpoison) > > Is unpoison_memory() expected to restore the HPageMigratable flag as well ? No it isn't. When unpoison_memory() unpoisons a hugepage, the hugepage is sent back to free hugepage pool, so I think that there's no need to restore HPageMigratable for it. > > > ret = get_page_unless_zero(page); > > else > > ret = -EBUSY; > > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > > index 145bb561ddb3..5942e1c0407e 100644 > > --- a/mm/memory-failure.c > > +++ b/mm/memory-failure.c > > @@ -1244,7 +1244,7 @@ static int __get_hwpoison_page(struct page *page, unsigned long flags) > > int ret = 0; > > bool hugetlb = false; > > > > - ret = get_hwpoison_huge_page(head, &hugetlb); > > + ret = get_hwpoison_huge_page(head, &hugetlb, false); > > if (hugetlb) > > return ret; > > > > @@ -1334,7 +1334,7 @@ static int __get_unpoison_page(struct page *page) > > int ret = 0; > > bool hugetlb = false; > > > > - ret = get_hwpoison_huge_page(head, &hugetlb); > > + ret = get_hwpoison_huge_page(head, &hugetlb, true); > > if (hugetlb) > > return ret; > > > > @@ -1815,6 +1815,13 @@ int __get_huge_page_for_hwpoison(unsigned long pfn, int flags) > > goto out; > > } > > > > + /* > > + * Clearing HPageMigratable for hwpoisoned hugepages to prevent them > > + * from being migrated by memory hotremove. > > + */ > > + if (count_increased) > > + ClearHPageMigratable(head); > > I believe this can prevent hwpoisoned hugepages from being migrated though there still be some windows. I'm not sure of "still racy" part, so could you elaborate it? Main scenario this patch tries to handle is like below: CPU 0 CPU 1 get_huge_page_for_hwpoison // take hugetlb_lock __get_huge_page_for_hwpoison scan_movable_pages if HPageMigratable goto found do_migrate_range if HPageMigratable get_page_unless_zero hugetlb_set_page_hwpoison ClearHPageMigratable // release hugetlb_lock isolate_hugetlb // take hugetlb_lock if !HPageMigratable // fails to isolate the hwpoisoned hugetlb. Maybe the following could be possible. CPU 0 CPU 1 scan_movable_pages if HPageMigratable goto found do_migrate_range isolate_hugetlb // the hugetlb is isolated, // but it's not hwpoisoned yet. get_huge_page_for_hwpoison // take hugetlb_lock __get_huge_page_for_hwpoison if HPageMigratable get_page_unless_zero hugetlb_set_page_hwpoison ClearHPageMigratable // release hugetlb_lock In this case, the hugepage is maybe broken but not marked as hwpoison yet, so it's not detectable. > > > + > > return ret; > > out: > > if (count_increased) > > @@ -1862,6 +1869,7 @@ static int try_memory_failure_hugetlb(unsigned long pfn, int flags, int *hugetlb > > > > if (hwpoison_filter(p)) { > > hugetlb_clear_page_hwpoison(head); > > + SetHPageMigratable(head); > > Would we set HPageMigratable flag for free hugetlb pages here? IIUC, they're not expected to have this flag set. Thank you, you're right. This should be done in "if (res == 1)" block. (hwpoison_filter often bothers me ...) > > Thanks, > Miaohe Lin Thank you very much! - Naoya Horiguchi