summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorLiu Shixin <liushixin2@huawei.com>2024-03-07 20:48:41 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-04-13 12:59:01 +0200
commit38753f1adaf570d3c288034eadbb63a14d2ab69c (patch)
treebc590a48e3a6b160fb7501117a6d1b3095f7475a /mm
parent4e37416e4ee1b1bc17364a68973e0c63be89e611 (diff)
downloadlinux-38753f1adaf570d3c288034eadbb63a14d2ab69c.tar.gz
linux-38753f1adaf570d3c288034eadbb63a14d2ab69c.tar.bz2
linux-38753f1adaf570d3c288034eadbb63a14d2ab69c.zip
mm/memory-failure: fix an incorrect use of tail pages
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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/memory-failure.c2
1 files changed, 1 insertions, 1 deletions
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)