stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH stable-5.10] mm/memory-failure: fix an incorrect use of tail pages
@ 2024-03-07 12:48 Liu Shixin
  2024-03-11  1:51 ` Liu Shixin
  2024-03-25  3:36 ` Liu Shixin
  0 siblings, 2 replies; 5+ messages in thread
From: Liu Shixin @ 2024-03-07 12:48 UTC (permalink / raw)
  To: Matthew Wilcox, Andrew Morton, Sasha Levin, Dan Williams,
	Naoya Horiguchi
  Cc: linux-kernel, linux-mm, stable, Liu Shixin

When backport commit c79c5a0a00a9 to 5.10-stable, there is a mistake change.
The head page instead of tail page should be passed to try_to_unmap(),
otherwise unmap will failed as follows.

 Memory failure: 0x121c10: failed to unmap page (mapcount=1)
 Memory failure: 0x121c10: recovery action for unmapping failed page: Ignored

Fixes: 70168fdc743b ("mm/memory-failure: check the mapcount of the precise page")
Signed-off-by: Liu Shixin <liushixin2@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 f320ff02cc19..dba2936292cf 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1075,7 +1075,7 @@ static bool hwpoison_user_mappings(struct page *p, unsigned long pfn,
 				unmap_success = false;
 			}
 		} else {
-			unmap_success = try_to_unmap(p, ttu);
+			unmap_success = try_to_unmap(hpage, ttu);
 		}
 	}
 	if (!unmap_success)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-03-30  9:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-07 12:48 [PATCH stable-5.10] mm/memory-failure: fix an incorrect use of tail pages Liu Shixin
2024-03-11  1:51 ` Liu Shixin
2024-03-25  3:36 ` Liu Shixin
2024-03-25  3:57   ` Matthew Wilcox
2024-03-30  9:12     ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).