VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Miaohe Lin <linmiaohe@huawei.com> 2021-09-02 14:58:19 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2021-09-03 09:58:15 -0700 commit: ae611d072c5c2968e2cc29431cf58094d8971b94 parent: 1d09510bcc6bc00ed406f0d65e39ab3b734f124b
Commit Summary:
mm/hwpoison: remove unneeded variable unmap_success
Diffstat:
1 file changed, 1 insertion, 2 deletions
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 470400cc7513..9793c78c3777 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1518,7 +1518,6 @@ static int memory_failure_dev_pagemap(unsigned long pfn, int flags,
 		struct dev_pagemap *pgmap)
 {
 	struct page *page = pfn_to_page(pfn);
-	const bool unmap_success = true;
 	unsigned long size = 0;
 	struct to_kill *tk;
 	LIST_HEAD(tokill);
@@ -1590,7 +1589,7 @@ static int memory_failure_dev_pagemap(unsigned long pfn, int flags,
 		start = (page->index << PAGE_SHIFT) & ~(size - 1);
 		unmap_mapping_range(page->mapping, start, size, 0);
 	}
-	kill_procs(&tokill, flags & MF_MUST_KILL, !unmap_success, pfn, flags);
+	kill_procs(&tokill, flags & MF_MUST_KILL, false, pfn, flags);
 	rc = 0;
 unlock:
 	dax_unlock_page(page, cookie);