aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWanpeng Li <wanpeng.li@hotmail.com>2015-08-14 18:34:59 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-08-14 18:56:32 -0400
commit036138080a4376e5f3e5d0cca8ac99084c5cf06e (patch)
tree2b879c67ee72c97696dc4611b59b959695e80c4d
parent4f32be677b124a49459e2603321c7a5605ceb9f8 (diff)
mm/hwpoison: fix fail isolate hugetlbfs page w/ refcount held
Hugetlbfs pages will get a refcount in get_any_page() or madvise_hwpoison() if soft offlining through madvise. The refcount which is held by the soft offline path should be released if we fail to isolate hugetlbfs pages. Fix it by reducing the refcount for both isolation success and failure. Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com> Acked-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: <stable@vger.kernel.org> [3.9+] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/memory-failure.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 81c20a7c9fa7..dba52ee31bd4 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1569,13 +1569,12 @@ static int soft_offline_huge_page(struct page *page, int flags)
1569 unlock_page(hpage); 1569 unlock_page(hpage);
1570 1570
1571 ret = isolate_huge_page(hpage, &pagelist); 1571 ret = isolate_huge_page(hpage, &pagelist);
1572 if (ret) { 1572 /*
1573 /* 1573 * get_any_page() and isolate_huge_page() takes a refcount each,
1574 * get_any_page() and isolate_huge_page() takes a refcount each, 1574 * so need to drop one here.
1575 * so need to drop one here. 1575 */
1576 */ 1576 put_page(hpage);
1577 put_page(hpage); 1577 if (!ret) {
1578 } else {
1579 pr_info("soft offline: %#lx hugepage failed to isolate\n", pfn); 1578 pr_info("soft offline: %#lx hugepage failed to isolate\n", pfn);
1580 return -EBUSY; 1579 return -EBUSY;
1581 } 1580 }