* [PATCH] HWPOSION, hugetlb: lock_page/unlock_page does not match for handling a free hugepage
@ 2014-05-10 3:14 Chen Yucong
2014-05-12 20:24 ` Naoya Horiguchi
[not found] ` <1399926246-nyqrlpg9@n-horiguchi@ah.jp.nec.com>
0 siblings, 2 replies; 3+ messages in thread
From: Chen Yucong @ 2014-05-10 3:14 UTC (permalink / raw)
To: linux-mm; +Cc: Naoya Horiguchi, Wu Fengguang, Andi Kleen
For handling a free hugepage in memory failure, the race will happen if
another thread hwpoisoned this hugepage concurrently. So we need to
check PageHWPoison instead of !PageHWPoison.
If hwpoison_filter(p) returns true or a race happens, then we need to
unlock_page(hpage).
Signed-off-by: Chen Yucong <slaoub@gmail.com>
Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
---
mm/memory-failure.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 35ef28a..dbf8922 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1081,15 +1081,16 @@ int memory_failure(unsigned long pfn, int
trapno, int flags)
return 0;
} else if (PageHuge(hpage)) {
/*
- * Check "just unpoisoned", "filter hit", and
- * "race with other subpage."
+ * Check "filter hit" and "race with other subpage."
*/
lock_page(hpage);
- if (!PageHWPoison(hpage)
- || (hwpoison_filter(p) && TestClearPageHWPoison(p))
- || (p != hpage && TestSetPageHWPoison(hpage))) {
- atomic_long_sub(nr_pages, &num_poisoned_pages);
- return 0;
+ if (PageHWPoison(hpage)) {
+ if ((hwpoison_filter(p) && TestClearPageHWPoison(p))
+ || (p != hpage && TestSetPageHWPoison(hpage))) {
+ atomic_long_sub(nr_pages, &num_poisoned_pages);
+ unlock_page(hpage);
+ return 0;
+ }
}
set_page_hwpoison_huge_page(hpage);
res = dequeue_hwpoisoned_huge_page(hpage);
--
1.7.10.4
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] HWPOSION, hugetlb: lock_page/unlock_page does not match for handling a free hugepage 2014-05-10 3:14 [PATCH] HWPOSION, hugetlb: lock_page/unlock_page does not match for handling a free hugepage Chen Yucong @ 2014-05-12 20:24 ` Naoya Horiguchi [not found] ` <1399926246-nyqrlpg9@n-horiguchi@ah.jp.nec.com> 1 sibling, 0 replies; 3+ messages in thread From: Naoya Horiguchi @ 2014-05-12 20:24 UTC (permalink / raw) To: slaoub; +Cc: linux-mm, Wu Fengguang, ak, Andrew Morton (Cced: Andrew) On Sat, May 10, 2014 at 11:14:34AM +0800, Chen Yucong wrote: > For handling a free hugepage in memory failure, the race will happen if > another thread hwpoisoned this hugepage concurrently. So we need to > check PageHWPoison instead of !PageHWPoison. > > If hwpoison_filter(p) returns true or a race happens, then we need to > unlock_page(hpage). > > Signed-off-by: Chen Yucong <slaoub@gmail.com> > Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> I tested this patch on latest linux-next, and confirmed that memory error on a tail page of a free hugepage is properly handled. Tested-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> And I think this patch should go into all recent stable trees, since this bug exists since 2.6.36 (because of my patch, sorry.) > --- > mm/memory-failure.c | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-) > > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > index 35ef28a..dbf8922 100644 > --- a/mm/memory-failure.c > +++ b/mm/memory-failure.c > @@ -1081,15 +1081,16 @@ int memory_failure(unsigned long pfn, int > trapno, int flags) This linebreak breaks patch format. I guess it's done by your email client or copy and paste. If it's true, git-send-email might be helpful to avoid such errors. Thanks, Naoya > return 0; > } else if (PageHuge(hpage)) { > /* > - * Check "just unpoisoned", "filter hit", and > - * "race with other subpage." > + * Check "filter hit" and "race with other subpage." > */ > lock_page(hpage); > - if (!PageHWPoison(hpage) > - || (hwpoison_filter(p) && TestClearPageHWPoison(p)) > - || (p != hpage && TestSetPageHWPoison(hpage))) { > - atomic_long_sub(nr_pages, &num_poisoned_pages); > - return 0; > + if (PageHWPoison(hpage)) { > + if ((hwpoison_filter(p) && TestClearPageHWPoison(p)) > + || (p != hpage && TestSetPageHWPoison(hpage))) { > + atomic_long_sub(nr_pages, &num_poisoned_pages); > + unlock_page(hpage); > + return 0; > + } > } > set_page_hwpoison_huge_page(hpage); > res = dequeue_hwpoisoned_huge_page(hpage); > -- > 1.7.10.4 > > > > > > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> > -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <1399926246-nyqrlpg9@n-horiguchi@ah.jp.nec.com>]
* Re: [PATCH] HWPOSION, hugetlb: lock_page/unlock_page does not match for handling a free hugepage [not found] ` <1399926246-nyqrlpg9@n-horiguchi@ah.jp.nec.com> @ 2014-05-12 21:01 ` Andi Kleen 0 siblings, 0 replies; 3+ messages in thread From: Andi Kleen @ 2014-05-12 21:01 UTC (permalink / raw) To: Naoya Horiguchi; +Cc: slaoub, linux-mm, Wu Fengguang, Andrew Morton On Mon, May 12, 2014 at 04:24:07PM -0400, Naoya Horiguchi wrote: > (Cced: Andrew) > > On Sat, May 10, 2014 at 11:14:34AM +0800, Chen Yucong wrote: > > For handling a free hugepage in memory failure, the race will happen if > > another thread hwpoisoned this hugepage concurrently. So we need to > > check PageHWPoison instead of !PageHWPoison. > > > > If hwpoison_filter(p) returns true or a race happens, then we need to > > unlock_page(hpage). > > > > Signed-off-by: Chen Yucong <slaoub@gmail.com> > > Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> > > I tested this patch on latest linux-next, and confirmed that memory error > on a tail page of a free hugepage is properly handled. Patch looks good to me too. Reviewed-by: Andi Kleen <ak@linux.intel.com> -Andi > > Tested-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> > > And I think this patch should go into all recent stable trees, since this > bug exists since 2.6.36 (because of my patch, sorry.) > > > --- > > mm/memory-failure.c | 15 ++++++++------- > > 1 file changed, 8 insertions(+), 7 deletions(-) > > > > diff --git a/mm/memory-failure.c b/mm/memory-failure.c > > index 35ef28a..dbf8922 100644 > > --- a/mm/memory-failure.c > > +++ b/mm/memory-failure.c > > @@ -1081,15 +1081,16 @@ int memory_failure(unsigned long pfn, int > > trapno, int flags) > > This linebreak breaks patch format. I guess it's done by your email > client or copy and paste. If it's true, git-send-email might be helpful > to avoid such errors. > > Thanks, > Naoya > > > > return 0; > > } else if (PageHuge(hpage)) { > > /* > > - * Check "just unpoisoned", "filter hit", and > > - * "race with other subpage." > > + * Check "filter hit" and "race with other subpage." > > */ > > lock_page(hpage); > > - if (!PageHWPoison(hpage) > > - || (hwpoison_filter(p) && TestClearPageHWPoison(p)) > > - || (p != hpage && TestSetPageHWPoison(hpage))) { > > - atomic_long_sub(nr_pages, &num_poisoned_pages); > > - return 0; > > + if (PageHWPoison(hpage)) { > > + if ((hwpoison_filter(p) && TestClearPageHWPoison(p)) > > + || (p != hpage && TestSetPageHWPoison(hpage))) { > > + atomic_long_sub(nr_pages, &num_poisoned_pages); > > + unlock_page(hpage); > > + return 0; > > + } > > } > > set_page_hwpoison_huge_page(hpage); > > res = dequeue_hwpoisoned_huge_page(hpage); > > -- > > 1.7.10.4 > > > > > > > > > > > > > > -- > > To unsubscribe, send a message with 'unsubscribe linux-mm' in > > the body to majordomo@kvack.org. For more info on Linux MM, > > see: http://www.linux-mm.org/ . > > Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> > > -- ak@linux.intel.com -- Speaking for myself only -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-05-12 21:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-10 3:14 [PATCH] HWPOSION, hugetlb: lock_page/unlock_page does not match for handling a free hugepage Chen Yucong
2014-05-12 20:24 ` Naoya Horiguchi
[not found] ` <1399926246-nyqrlpg9@n-horiguchi@ah.jp.nec.com>
2014-05-12 21:01 ` Andi Kleen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox