Prev: [PATCH 8/9] page-types.c: fix name of unpoison interface
Next: arch/frv: Removing dead RAMKERNEL config option
From: Naoya Horiguchi on 10 Aug 2010 05:40 Currently unpoisoning hugepages doesn't work because it's not enough to just clear PG_HWPoison bits and we need to link the hugepage to be unpoisoned back to the free hugepage list. To do this, we get and put hwpoisoned hugepage whose refcount is 0. Signed-off-by: Naoya Horiguchi <n-horiguchi(a)ah.jp.nec.com> Signed-off-by: Jun'ichi Nomura <j-nomura(a)ce.jp.nec.com> --- mm/memory-failure.c | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git linux-mce-hwpoison/mm/memory-failure.c linux-mce-hwpoison/mm/memory-failure.c index 0bfe5b3..1f54901 100644 --- linux-mce-hwpoison/mm/memory-failure.c +++ linux-mce-hwpoison/mm/memory-failure.c @@ -1153,9 +1153,19 @@ int unpoison_memory(unsigned long pfn) nr_pages = 1 << compound_order(page); if (!get_page_unless_zero(page)) { - if (TestClearPageHWPoison(p)) + /* The page to be unpoisoned was free one when hwpoisoned */ + if (TestClearPageHWPoison(page)) atomic_long_sub(nr_pages, &mce_bad_pages); pr_debug("MCE: Software-unpoisoned free page %#lx\n", pfn); + if (PageHuge(page)) { + /* + * To unpoison free hugepage, we get and put it + * to move it back to the free list. + */ + get_page(page); + clear_page_hwpoison_huge_page(page); + put_page(page); + } return 0; } @@ -1170,9 +1180,9 @@ int unpoison_memory(unsigned long pfn) pr_debug("MCE: Software-unpoisoned page %#lx\n", pfn); atomic_long_sub(nr_pages, &mce_bad_pages); freeit = 1; + if (PageHuge(page)) + clear_page_hwpoison_huge_page(page); } - if (PageHuge(p)) - clear_page_hwpoison_huge_page(page); unlock_page(page); put_page(page); -- 1.7.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |