Commit e37e7b0b authored by Naoya Horiguchi's avatar Naoya Horiguchi Committed by Linus Torvalds

mm, hwpoison: fix condition in free hugetlb page path

When a memory error hits a tail page of a free hugepage,
__page_handle_poison() is expected to be called to isolate the error in
4kB unit, but it's not called due to the outdated if-condition in
memory_failure_hugetlb().  This loses the chance to isolate the error in
the finer unit, so it's not optimal.  Drop the condition.

This "(p != head && TestSetPageHWPoison(head)" condition is based on the
old semantics of PageHWPoison on hugepage (where PG_hwpoison flag was
set on the subpage), so it's not necessray any more.  By getting to set
PG_hwpoison on head page for hugepages, concurrent error events on
different subpages in a single hugepage can be prevented by
TestSetPageHWPoison(head) at the beginning of memory_failure_hugetlb().
So dropping the condition should not reopen the race window originally
mentioned in commit b985194c ("hwpoison, hugetlb:
lock_page/unlock_page does not match for handling a free hugepage")

[naoya.horiguchi@linux.dev: fix "HardwareCorrupted" counter]
  Link: https://lkml.kernel.org/r/20211220084851.GA1460264@u2004

Link: https://lkml.kernel.org/r/20211210110208.879740-1-naoya.horiguchi@linux.devSigned-off-by: default avatarNaoya Horiguchi <naoya.horiguchi@nec.com>
Reported-by: default avatarFei Luo <luofei@unicloud.com>
Reviewed-by: default avatarMike Kravetz <mike.kravetz@oracle.com>
Cc: <stable@vger.kernel.org>	[5.14+]
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7e5b901e
...@@ -1470,17 +1470,12 @@ static int memory_failure_hugetlb(unsigned long pfn, int flags) ...@@ -1470,17 +1470,12 @@ static int memory_failure_hugetlb(unsigned long pfn, int flags)
if (!(flags & MF_COUNT_INCREASED)) { if (!(flags & MF_COUNT_INCREASED)) {
res = get_hwpoison_page(p, flags); res = get_hwpoison_page(p, flags);
if (!res) { if (!res) {
/*
* Check "filter hit" and "race with other subpage."
*/
lock_page(head); lock_page(head);
if (PageHWPoison(head)) { if (hwpoison_filter(p)) {
if ((hwpoison_filter(p) && TestClearPageHWPoison(p)) if (TestClearPageHWPoison(head))
|| (p != head && TestSetPageHWPoison(head))) {
num_poisoned_pages_dec(); num_poisoned_pages_dec();
unlock_page(head); unlock_page(head);
return 0; return 0;
}
} }
unlock_page(head); unlock_page(head);
res = MF_FAILED; res = MF_FAILED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment