* [PATCH v3 0/2] A few fixup patches for memory failure
@ 2022-03-18 7:39 Miaohe Lin
2022-03-18 7:39 ` [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages Miaohe Lin
2022-03-18 7:39 ` [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable Miaohe Lin
0 siblings, 2 replies; 7+ messages in thread
From: Miaohe Lin @ 2022-03-18 7:39 UTC (permalink / raw)
To: akpm, naoya.horiguchi, shy828301, mike.kravetz
Cc: linux-mm, linux-kernel, linmiaohe
Hi everyone,
This series contains a patch to avoid calling invalidate_inode_page()
with unexpected pages and another one to make non-LRU movable pages
unhandlable. More details can be found in the respective changelogs.
Thanks!
---
v2->v3:
drop patch "mm/memory-failure.c: fix race with changing page compound again"
collect reviewed-by and acked-by tag
fix stale commit id in the commit log
v1->v2:
drop "mm/memory-failure.c: fix wrong user reference report"
make non-LRU movable pages unhandlable
fix confusing commit log and introduce MF_MSG_DIFFERENT_PAGE_SIZE
Many thanks Naoya, Mike and Yang Shi for review!
---
Miaohe Lin (2):
mm/memory-failure.c: avoid calling invalidate_inode_page() with
unexpected pages
mm/memory-failure.c: make non-LRU movable pages unhandlable
mm/memory-failure.c | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
--
2.23.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages 2022-03-18 7:39 [PATCH v3 0/2] A few fixup patches for memory failure Miaohe Lin @ 2022-03-18 7:39 ` Miaohe Lin 2022-03-17 12:29 ` David Hildenbrand 2022-03-18 7:39 ` [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable Miaohe Lin 1 sibling, 1 reply; 7+ messages in thread From: Miaohe Lin @ 2022-03-18 7:39 UTC (permalink / raw) To: akpm, naoya.horiguchi, shy828301, mike.kravetz Cc: linux-mm, linux-kernel, linmiaohe invalidate_inode_page() can invalidate the pages in the swap cache because the check of page->mapping != mapping is removed via Matthew's patch titled "mm/truncate: Inline invalidate_complete_page() into its one caller". But invalidate_inode_page() is not expected to deal with the pages in the swap cache. Also non-lru movable page can reach here too. They're not page cache pages. Skip these pages by checking PageSwapCache and PageLRU to fix this unexpected issue. Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> --- mm/memory-failure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/memory-failure.c b/mm/memory-failure.c index 5444a8ef4867..ecf45961f3b6 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -2178,7 +2178,7 @@ static int __soft_offline_page(struct page *page) return 0; } - if (!PageHuge(page)) + if (!PageHuge(page) && PageLRU(page) && !PageSwapCache(page)) /* * Try to invalidate first. This should work for * non dirty unmapped page cache pages. -- 2.23.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages 2022-03-18 7:39 ` [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages Miaohe Lin @ 2022-03-17 12:29 ` David Hildenbrand 2022-03-18 6:29 ` Miaohe Lin 0 siblings, 1 reply; 7+ messages in thread From: David Hildenbrand @ 2022-03-17 12:29 UTC (permalink / raw) To: Miaohe Lin, akpm, naoya.horiguchi, shy828301, mike.kravetz Cc: linux-mm, linux-kernel On 18.03.22 08:39, Miaohe Lin wrote: > invalidate_inode_page() can invalidate the pages in the swap cache because > the check of page->mapping != mapping is removed via Matthew's patch titled > "mm/truncate: Inline invalidate_complete_page() into its one caller". But > invalidate_inode_page() is not expected to deal with the pages in the swap > cache. Also non-lru movable page can reach here too. They're not page cache > pages. Skip these pages by checking PageSwapCache and PageLRU to fix this > unexpected issue. > > Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> > --- > mm/memory-failure.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > index 5444a8ef4867..ecf45961f3b6 100644 > --- a/mm/memory-failure.c > +++ b/mm/memory-failure.c > @@ -2178,7 +2178,7 @@ static int __soft_offline_page(struct page *page) > return 0; > } > > - if (!PageHuge(page)) > + if (!PageHuge(page) && PageLRU(page) && !PageSwapCache(page)) > /* > * Try to invalidate first. This should work for > * non dirty unmapped page cache pages. I'm not familiar with this code to ack this, but it looks sane to me. -- Thanks, David / dhildenb ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages 2022-03-17 12:29 ` David Hildenbrand @ 2022-03-18 6:29 ` Miaohe Lin 0 siblings, 0 replies; 7+ messages in thread From: Miaohe Lin @ 2022-03-18 6:29 UTC (permalink / raw) To: David Hildenbrand Cc: linux-mm, linux-kernel, akpm, naoya.horiguchi, shy828301, mike.kravetz On 2022/3/17 20:29, David Hildenbrand wrote: > On 18.03.22 08:39, Miaohe Lin wrote: >> invalidate_inode_page() can invalidate the pages in the swap cache because >> the check of page->mapping != mapping is removed via Matthew's patch titled >> "mm/truncate: Inline invalidate_complete_page() into its one caller". But >> invalidate_inode_page() is not expected to deal with the pages in the swap >> cache. Also non-lru movable page can reach here too. They're not page cache >> pages. Skip these pages by checking PageSwapCache and PageLRU to fix this >> unexpected issue. >> >> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> >> --- >> mm/memory-failure.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/mm/memory-failure.c b/mm/memory-failure.c >> index 5444a8ef4867..ecf45961f3b6 100644 >> --- a/mm/memory-failure.c >> +++ b/mm/memory-failure.c >> @@ -2178,7 +2178,7 @@ static int __soft_offline_page(struct page *page) >> return 0; >> } >> >> - if (!PageHuge(page)) >> + if (!PageHuge(page) && PageLRU(page) && !PageSwapCache(page)) >> /* >> * Try to invalidate first. This should work for >> * non dirty unmapped page cache pages. > > I'm not familiar with this code to ack this, but it looks sane to me. > Thanks David. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable 2022-03-18 7:39 [PATCH v3 0/2] A few fixup patches for memory failure Miaohe Lin 2022-03-18 7:39 ` [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages Miaohe Lin @ 2022-03-18 7:39 ` Miaohe Lin 2022-03-17 12:11 ` David Hildenbrand 1 sibling, 1 reply; 7+ messages in thread From: Miaohe Lin @ 2022-03-18 7:39 UTC (permalink / raw) To: akpm, naoya.horiguchi, shy828301, mike.kravetz Cc: linux-mm, linux-kernel, linmiaohe We can not really handle non-LRU movable pages in memory failure. Typically they are balloon, zsmalloc, etc. Assuming we run into a base (4K) non-LRU movable page, we could reach as far as identify_page_state(), it should not fall into any category except me_unknown. For the non-LRU compound movable pages, they could be taken for transhuge pages but it's unexpected to split non-LRU movable pages using split_huge_page_to_list in memory_failure. So we could just simply make non-LRU movable pages unhandlable to avoid these possible nasty cases. Suggested-by: Yang Shi <shy828301@gmail.com> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Reviewed-by: Yang Shi <shy828301@gmail.com> Acked-by: Naoya Horiguchi <naoya.horiguchi@nec.com> --- mm/memory-failure.c | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/mm/memory-failure.c b/mm/memory-failure.c index ecf45961f3b6..bf14bea2ed93 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -1176,12 +1176,18 @@ void ClearPageHWPoisonTakenOff(struct page *page) * does not return true for hugetlb or device memory pages, so it's assumed * to be called only in the context where we never have such pages. */ -static inline bool HWPoisonHandlable(struct page *page) +static inline bool HWPoisonHandlable(struct page *page, unsigned long flags) { - return PageLRU(page) || __PageMovable(page) || is_free_buddy_page(page); + bool movable = false; + + /* Soft offline could mirgate non-LRU movable pages */ + if ((flags & MF_SOFT_OFFLINE) && __PageMovable(page)) + movable = true; + + return movable || PageLRU(page) || is_free_buddy_page(page); } -static int __get_hwpoison_page(struct page *page) +static int __get_hwpoison_page(struct page *page, unsigned long flags) { struct page *head = compound_head(page); int ret = 0; @@ -1196,7 +1202,7 @@ static int __get_hwpoison_page(struct page *page) * for any unsupported type of page in order to reduce the risk of * unexpected races caused by taking a page refcount. */ - if (!HWPoisonHandlable(head)) + if (!HWPoisonHandlable(head, flags)) return -EBUSY; if (get_page_unless_zero(head)) { @@ -1221,7 +1227,7 @@ static int get_any_page(struct page *p, unsigned long flags) try_again: if (!count_increased) { - ret = __get_hwpoison_page(p); + ret = __get_hwpoison_page(p, flags); if (!ret) { if (page_count(p)) { /* We raced with an allocation, retry. */ @@ -1249,7 +1255,7 @@ static int get_any_page(struct page *p, unsigned long flags) } } - if (PageHuge(p) || HWPoisonHandlable(p)) { + if (PageHuge(p) || HWPoisonHandlable(p, flags)) { ret = 1; } else { /* @@ -2296,7 +2302,7 @@ int soft_offline_page(unsigned long pfn, int flags) retry: get_online_mems(); - ret = get_hwpoison_page(page, flags); + ret = get_hwpoison_page(page, flags | MF_SOFT_OFFLINE); put_online_mems(); if (ret > 0) { -- 2.23.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable 2022-03-18 7:39 ` [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable Miaohe Lin @ 2022-03-17 12:11 ` David Hildenbrand 2022-03-18 6:28 ` Miaohe Lin 0 siblings, 1 reply; 7+ messages in thread From: David Hildenbrand @ 2022-03-17 12:11 UTC (permalink / raw) To: Miaohe Lin, akpm, naoya.horiguchi, shy828301, mike.kravetz Cc: linux-mm, linux-kernel On 18.03.22 08:39, Miaohe Lin wrote: > We can not really handle non-LRU movable pages in memory failure. Typically > they are balloon, zsmalloc, etc. Assuming we run into a base (4K) non-LRU > movable page, we could reach as far as identify_page_state(), it should not > fall into any category except me_unknown. For the non-LRU compound movable > pages, they could be taken for transhuge pages but it's unexpected to split > non-LRU movable pages using split_huge_page_to_list in memory_failure. So > we could just simply make non-LRU movable pages unhandlable to avoid these > possible nasty cases. > > Suggested-by: Yang Shi <shy828301@gmail.com> > Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> > Reviewed-by: Yang Shi <shy828301@gmail.com> > Acked-by: Naoya Horiguchi <naoya.horiguchi@nec.com> > --- > mm/memory-failure.c | 20 +++++++++++++------- > 1 file changed, 13 insertions(+), 7 deletions(-) > > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > index ecf45961f3b6..bf14bea2ed93 100644 > --- a/mm/memory-failure.c > +++ b/mm/memory-failure.c > @@ -1176,12 +1176,18 @@ void ClearPageHWPoisonTakenOff(struct page *page) > * does not return true for hugetlb or device memory pages, so it's assumed > * to be called only in the context where we never have such pages. > */ > -static inline bool HWPoisonHandlable(struct page *page) > +static inline bool HWPoisonHandlable(struct page *page, unsigned long flags) > { > - return PageLRU(page) || __PageMovable(page) || is_free_buddy_page(page); > + bool movable = false; > + > + /* Soft offline could mirgate non-LRU movable pages */ s/mirgate/migrate/ > + if ((flags & MF_SOFT_OFFLINE) && __PageMovable(page)) > + movable = true; simply "return true" and drop "bool movable". > + > + return movable || PageLRU(page) || is_free_buddy_page(page); -- Thanks, David / dhildenb ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable 2022-03-17 12:11 ` David Hildenbrand @ 2022-03-18 6:28 ` Miaohe Lin 0 siblings, 0 replies; 7+ messages in thread From: Miaohe Lin @ 2022-03-18 6:28 UTC (permalink / raw) To: David Hildenbrand Cc: linux-mm, linux-kernel, Andrew Morton, naoya.horiguchi, shy828301, mike.kravetz On 2022/3/17 20:11, David Hildenbrand wrote: > On 18.03.22 08:39, Miaohe Lin wrote: >> We can not really handle non-LRU movable pages in memory failure. Typically >> they are balloon, zsmalloc, etc. Assuming we run into a base (4K) non-LRU >> movable page, we could reach as far as identify_page_state(), it should not >> fall into any category except me_unknown. For the non-LRU compound movable >> pages, they could be taken for transhuge pages but it's unexpected to split >> non-LRU movable pages using split_huge_page_to_list in memory_failure. So >> we could just simply make non-LRU movable pages unhandlable to avoid these >> possible nasty cases. >> >> Suggested-by: Yang Shi <shy828301@gmail.com> >> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> >> Reviewed-by: Yang Shi <shy828301@gmail.com> >> Acked-by: Naoya Horiguchi <naoya.horiguchi@nec.com> >> --- >> mm/memory-failure.c | 20 +++++++++++++------- >> 1 file changed, 13 insertions(+), 7 deletions(-) >> >> diff --git a/mm/memory-failure.c b/mm/memory-failure.c >> index ecf45961f3b6..bf14bea2ed93 100644 >> --- a/mm/memory-failure.c >> +++ b/mm/memory-failure.c >> @@ -1176,12 +1176,18 @@ void ClearPageHWPoisonTakenOff(struct page *page) >> * does not return true for hugetlb or device memory pages, so it's assumed >> * to be called only in the context where we never have such pages. >> */ >> -static inline bool HWPoisonHandlable(struct page *page) >> +static inline bool HWPoisonHandlable(struct page *page, unsigned long flags) >> { >> - return PageLRU(page) || __PageMovable(page) || is_free_buddy_page(page); >> + bool movable = false; >> + >> + /* Soft offline could mirgate non-LRU movable pages */ > > s/mirgate/migrate/ OK. My mistake. > >> + if ((flags & MF_SOFT_OFFLINE) && __PageMovable(page)) >> + movable = true; > > simply "return true" and drop "bool movable". OK. > >> + >> + return movable || PageLRU(page) || is_free_buddy_page(page); > Many thanks for comment! ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-03-18 6:29 UTC | newest] Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2022-03-18 7:39 [PATCH v3 0/2] A few fixup patches for memory failure Miaohe Lin 2022-03-18 7:39 ` [PATCH v3 1/2] mm/memory-failure.c: avoid calling invalidate_inode_page() with unexpected pages Miaohe Lin 2022-03-17 12:29 ` David Hildenbrand 2022-03-18 6:29 ` Miaohe Lin 2022-03-18 7:39 ` [PATCH v3 2/2] mm/memory-failure.c: make non-LRU movable pages unhandlable Miaohe Lin 2022-03-17 12:11 ` David Hildenbrand 2022-03-18 6:28 ` Miaohe Lin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox