Message ID | 20220602050631.771414-2-naoya.horiguchi@linux.dev (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | mm, hwpoison: enable 1GB hugepage support | expand |
On 2022/6/2 13:06, Naoya Horiguchi wrote: > From: Naoya Horiguchi <naoya.horiguchi@nec.com> > > When handling memory error on a hugetlb page, the error handler tries to > dissolve and turn it into 4kB pages. If it's successfully dissolved, > PageHWPoison flag is moved to the raw error page, so that's all right. > However, dissolve sometimes fails, then the error page is left as > hwpoisoned hugepage. It's useful if we can retry to dissolve it to save > healthy pages, but that's not possible now because the information about > where the raw error page is lost. > > Use the private field of a tail page to keep that information. The code > path of shrinking hugepage pool used this info to try delayed dissolve. > This only keeps one hwpoison page for now, which might be OK because it's > simple and multiple hwpoison pages in a hugepage can be rare. But it can Yeah, multiple hwpoison pages in a hugepage might indicate that there are other problems. > be extended in the future. Since 1GB hugepage is going to be supported, only keeping one hwpoison page might not be enough soon. ;) > > Signed-off-by: Naoya Horiguchi <naoya.horiguchi@nec.com> Reviewed-by: Miaohe Lin <linmiaohe@huawei.com> Thanks! > --- > ChangeLog since previous post on 4/27: > - fixed typo in patch description (by Miaohe) > - fixed config value in #ifdef statement (by Miaohe) > - added sentences about "multiple hwpoison pages" scenario in patch > description > --- > include/linux/hugetlb.h | 24 ++++++++++++++++++++++++ > mm/hugetlb.c | 9 +++++++++ > mm/memory-failure.c | 2 ++ > 3 files changed, 35 insertions(+) > > diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h > index ac2a1d758a80..a5341a3a0d4b 100644 > --- a/include/linux/hugetlb.h > +++ b/include/linux/hugetlb.h > @@ -42,6 +42,9 @@ enum { > SUBPAGE_INDEX_CGROUP, /* reuse page->private */ > SUBPAGE_INDEX_CGROUP_RSVD, /* reuse page->private */ > __MAX_CGROUP_SUBPAGE_INDEX = SUBPAGE_INDEX_CGROUP_RSVD, > +#endif > +#ifdef CONFIG_MEMORY_FAILURE > + SUBPAGE_INDEX_HWPOISON, > #endif > __NR_USED_SUBPAGE, > }; > @@ -784,6 +787,27 @@ extern int dissolve_free_huge_page(struct page *page); > extern int dissolve_free_huge_pages(unsigned long start_pfn, > unsigned long end_pfn); > > +#ifdef CONFIG_MEMORY_FAILURE > +/* > + * pointer to raw error page is located in hpage[SUBPAGE_INDEX_HWPOISON].private > + */ > +static inline struct page *hugetlb_page_hwpoison(struct page *hpage) > +{ > + return (void *)page_private(hpage + SUBPAGE_INDEX_HWPOISON); > +} > + > +static inline void hugetlb_set_page_hwpoison(struct page *hpage, > + struct page *page) > +{ > + set_page_private(hpage + SUBPAGE_INDEX_HWPOISON, (unsigned long)page); > +} > +#else > +static inline struct page *hugetlb_page_hwpoison(struct page *hpage) > +{ > + return NULL; > +} > +#endif > + > #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION > #ifndef arch_hugetlb_migration_supported > static inline bool arch_hugetlb_migration_supported(struct hstate *h) > diff --git a/mm/hugetlb.c b/mm/hugetlb.c > index f8e048b939c7..6867ea8345d1 100644 > --- a/mm/hugetlb.c > +++ b/mm/hugetlb.c > @@ -1547,6 +1547,15 @@ static void __update_and_free_page(struct hstate *h, struct page *page) > return; > } > > + if (unlikely(PageHWPoison(page))) { > + struct page *raw_error = hugetlb_page_hwpoison(page); > + > + if (raw_error && raw_error != page) { > + SetPageHWPoison(raw_error); > + ClearPageHWPoison(page); > + } > + } > + > for (i = 0; i < pages_per_huge_page(h); > i++, subpage = mem_map_next(subpage, page, i)) { > subpage->flags &= ~(1 << PG_locked | 1 << PG_error | > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > index 66edaa7e5092..056dbb2050f8 100644 > --- a/mm/memory-failure.c > +++ b/mm/memory-failure.c > @@ -1534,6 +1534,8 @@ int __get_huge_page_for_hwpoison(unsigned long pfn, int flags) > goto out; > } > > + hugetlb_set_page_hwpoison(head, page); > + > return ret; > out: > if (count_increased) >
On 02.06.22 07:06, Naoya Horiguchi wrote: > From: Naoya Horiguchi <naoya.horiguchi@nec.com> > > When handling memory error on a hugetlb page, the error handler tries to > dissolve and turn it into 4kB pages. If it's successfully dissolved, > PageHWPoison flag is moved to the raw error page, so that's all right. > However, dissolve sometimes fails, then the error page is left as > hwpoisoned hugepage. It's useful if we can retry to dissolve it to save > healthy pages, but that's not possible now because the information about > where the raw error page is lost. > > Use the private field of a tail page to keep that information. The code > path of shrinking hugepage pool used this info to try delayed dissolve. > This only keeps one hwpoison page for now, which might be OK because it's > simple and multiple hwpoison pages in a hugepage can be rare. But it can > be extended in the future. > > But what would happen now if you have multiple successive MCE events on such a page now?
On Tue, Jun 07, 2022 at 03:04:15PM +0200, David Hildenbrand wrote: > On 02.06.22 07:06, Naoya Horiguchi wrote: > > From: Naoya Horiguchi <naoya.horiguchi@nec.com> > > > > When handling memory error on a hugetlb page, the error handler tries to > > dissolve and turn it into 4kB pages. If it's successfully dissolved, > > PageHWPoison flag is moved to the raw error page, so that's all right. > > However, dissolve sometimes fails, then the error page is left as > > hwpoisoned hugepage. It's useful if we can retry to dissolve it to save > > healthy pages, but that's not possible now because the information about > > where the raw error page is lost. > > > > Use the private field of a tail page to keep that information. The code > > path of shrinking hugepage pool used this info to try delayed dissolve. > > This only keeps one hwpoison page for now, which might be OK because it's > > simple and multiple hwpoison pages in a hugepage can be rare. But it can > > be extended in the future. > > > > > > But what would happen now if you have multiple successive MCE events on > such a page now? The 2nd and later events are ignored due to "already hwpoisoned hugepage", this might not be good when the hwpoisoned hugepage is freed/dissolved later. So a temporal workaround is to remember "hugepage has multiple hwpoison pages" and disable free/dissolve for such hugepages. Thanks, Naoya Horiguchi
On 08.06.22 03:31, HORIGUCHI NAOYA(堀口 直也) wrote: > On Tue, Jun 07, 2022 at 03:04:15PM +0200, David Hildenbrand wrote: >> On 02.06.22 07:06, Naoya Horiguchi wrote: >>> From: Naoya Horiguchi <naoya.horiguchi@nec.com> >>> >>> When handling memory error on a hugetlb page, the error handler tries to >>> dissolve and turn it into 4kB pages. If it's successfully dissolved, >>> PageHWPoison flag is moved to the raw error page, so that's all right. >>> However, dissolve sometimes fails, then the error page is left as >>> hwpoisoned hugepage. It's useful if we can retry to dissolve it to save >>> healthy pages, but that's not possible now because the information about >>> where the raw error page is lost. >>> >>> Use the private field of a tail page to keep that information. The code >>> path of shrinking hugepage pool used this info to try delayed dissolve. >>> This only keeps one hwpoison page for now, which might be OK because it's >>> simple and multiple hwpoison pages in a hugepage can be rare. But it can >>> be extended in the future. >>> >>> >> >> But what would happen now if you have multiple successive MCE events on >> such a page now? > > The 2nd and later events are ignored due to "already hwpoisoned hugepage", > this might not be good when the hwpoisoned hugepage is freed/dissolved later. > So a temporal workaround is to remember "hugepage has multiple hwpoison pages" > and disable free/dissolve for such hugepages. Right. We might want to indicate exactly one vs. multiple, and then in __update_and_free_page(), move the hwpoison flag to one subpage, eventually exposing other corrupted subpages to the system.
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index ac2a1d758a80..a5341a3a0d4b 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h @@ -42,6 +42,9 @@ enum { SUBPAGE_INDEX_CGROUP, /* reuse page->private */ SUBPAGE_INDEX_CGROUP_RSVD, /* reuse page->private */ __MAX_CGROUP_SUBPAGE_INDEX = SUBPAGE_INDEX_CGROUP_RSVD, +#endif +#ifdef CONFIG_MEMORY_FAILURE + SUBPAGE_INDEX_HWPOISON, #endif __NR_USED_SUBPAGE, }; @@ -784,6 +787,27 @@ extern int dissolve_free_huge_page(struct page *page); extern int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn); +#ifdef CONFIG_MEMORY_FAILURE +/* + * pointer to raw error page is located in hpage[SUBPAGE_INDEX_HWPOISON].private + */ +static inline struct page *hugetlb_page_hwpoison(struct page *hpage) +{ + return (void *)page_private(hpage + SUBPAGE_INDEX_HWPOISON); +} + +static inline void hugetlb_set_page_hwpoison(struct page *hpage, + struct page *page) +{ + set_page_private(hpage + SUBPAGE_INDEX_HWPOISON, (unsigned long)page); +} +#else +static inline struct page *hugetlb_page_hwpoison(struct page *hpage) +{ + return NULL; +} +#endif + #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION #ifndef arch_hugetlb_migration_supported static inline bool arch_hugetlb_migration_supported(struct hstate *h) diff --git a/mm/hugetlb.c b/mm/hugetlb.c index f8e048b939c7..6867ea8345d1 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -1547,6 +1547,15 @@ static void __update_and_free_page(struct hstate *h, struct page *page) return; } + if (unlikely(PageHWPoison(page))) { + struct page *raw_error = hugetlb_page_hwpoison(page); + + if (raw_error && raw_error != page) { + SetPageHWPoison(raw_error); + ClearPageHWPoison(page); + } + } + for (i = 0; i < pages_per_huge_page(h); i++, subpage = mem_map_next(subpage, page, i)) { subpage->flags &= ~(1 << PG_locked | 1 << PG_error | diff --git a/mm/memory-failure.c b/mm/memory-failure.c index 66edaa7e5092..056dbb2050f8 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -1534,6 +1534,8 @@ int __get_huge_page_for_hwpoison(unsigned long pfn, int flags) goto out; } + hugetlb_set_page_hwpoison(head, page); + return ret; out: if (count_increased)