* Re: [PATCH] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED [not found] <52f54d29.89cfe00a.4277.4d3dSMTPIN_ADDED_BROKEN@mx.google.com> @ 2014-02-07 21:43 ` Andrew Morton 2014-02-07 22:00 ` Naoya Horiguchi 0 siblings, 1 reply; 3+ messages in thread From: Andrew Morton @ 2014-02-07 21:43 UTC (permalink / raw) To: Naoya Horiguchi Cc: linux-kernel, Andi Kleen, Wanpeng Li, gong.chen, linux-mm, Naoya Horiguchi On Fri, 07 Feb 2014 16:16:04 -0500 Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> wrote: > # Resending due to sending failure. Sorry if you received twice. > --- > mce-test detected a test failure when injecting error to a thp tail page. > This is because we take page refcount of the tail page in madvise_hwpoison() > while the fix in commit a3e0f9e47d5e ("mm/memory-failure.c: transfer page > count from head page to tail page after split thp") assumes that we always > take refcount on the head page. > > When a real memory error happens we take refcount on the head page where > memory_failure() is called without MF_COUNT_INCREASED set, so it seems to me > that testing memory error on thp tail page using madvise makes little sense. > > This patch cancels moving refcount in !MF_COUNT_INCREASED for valid testing. > > ... > > --- v3.14-rc1.orig/mm/memory-failure.c > +++ v3.14-rc1/mm/memory-failure.c > @@ -1042,8 +1042,10 @@ static int hwpoison_user_mappings(struct page *p, unsigned long pfn, > * to it. Similarly, page lock is shifted. > */ > if (hpage != p) { > - put_page(hpage); > - get_page(p); > + if (!(flags && MF_COUNT_INCREASED)) { s/&&/&/ Please carefully retest this, make sure that both cases are covered? > + put_page(hpage); > + get_page(p); > + } > lock_page(p); > unlock_page(hpage); > *hpagep = p; -- 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] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED 2014-02-07 21:43 ` [PATCH] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED Andrew Morton @ 2014-02-07 22:00 ` Naoya Horiguchi 0 siblings, 0 replies; 3+ messages in thread From: Naoya Horiguchi @ 2014-02-07 22:00 UTC (permalink / raw) To: Andrew Morton Cc: linux-kernel, Andi Kleen, Wanpeng Li, gong.chen, linux-mm, Naoya Horiguchi On Fri, Feb 07, 2014 at 01:43:29PM -0800, Andrew Morton wrote: > On Fri, 07 Feb 2014 16:16:04 -0500 Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> wrote: > > > # Resending due to sending failure. Sorry if you received twice. > > --- > > mce-test detected a test failure when injecting error to a thp tail page. > > This is because we take page refcount of the tail page in madvise_hwpoison() > > while the fix in commit a3e0f9e47d5e ("mm/memory-failure.c: transfer page > > count from head page to tail page after split thp") assumes that we always > > take refcount on the head page. > > > > When a real memory error happens we take refcount on the head page where > > memory_failure() is called without MF_COUNT_INCREASED set, so it seems to me > > that testing memory error on thp tail page using madvise makes little sense. > > > > This patch cancels moving refcount in !MF_COUNT_INCREASED for valid testing. > > > > ... > > > > --- v3.14-rc1.orig/mm/memory-failure.c > > +++ v3.14-rc1/mm/memory-failure.c > > @@ -1042,8 +1042,10 @@ static int hwpoison_user_mappings(struct page *p, unsigned long pfn, > > * to it. Similarly, page lock is shifted. > > */ > > if (hpage != p) { > > - put_page(hpage); > > - get_page(p); > > + if (!(flags && MF_COUNT_INCREASED)) { > > s/&&/&/ > > Please carefully retest this, make sure that both cases are covered? Sorry for silly mistake, flags is MF_COUNT_INCREASED from madvise() and 0 from /sys/devices/system/memory/soft_offline_page, so the above logic accidentally made no difference from the correct one in comparing with these two cases. I retested it and confirmed that replaced one fixes the problem. Thanks, Naoya --- From: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Date: Fri, 7 Feb 2014 06:33:30 -0500 Subject: [PATCH v2] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED mce-test detected a test failure when injecting error to a thp tail page. This is because we take page refcount of the tail page in madvise_hwpoison() while the fix in commit a3e0f9e47d5e ("mm/memory-failure.c: transfer page count from head page to tail page after split thp") assumes that we always take refcount on the head page. When a real memory error happens we take refcount on the head page where memory_failure() is called without MF_COUNT_INCREASED set, so it seems to me that testing memory error on thp tail page using madvise makes little sense. This patch cancels moving refcount in !MF_COUNT_INCREASED for valid testing. Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: stable@vger.kernel.org # 3.9+: a3e0f9e47d5e --- mm/memory-failure.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mm/memory-failure.c b/mm/memory-failure.c index ab55d489eb05..b68d14d59784 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -1042,8 +1042,10 @@ static int hwpoison_user_mappings(struct page *p, unsigned long pfn, * to it. Similarly, page lock is shifted. */ if (hpage != p) { - put_page(hpage); - get_page(p); + if (!(flags & MF_COUNT_INCREASED)) { + put_page(hpage); + get_page(p); + } lock_page(p); unlock_page(hpage); *hpagep = p; -- 1.8.5.3 -- 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
* [PATCH] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED
@ 2014-02-07 21:16 Naoya Horiguchi
0 siblings, 0 replies; 3+ messages in thread
From: Naoya Horiguchi @ 2014-02-07 21:16 UTC (permalink / raw)
To: linux-kernel
Cc: Andi Kleen, Andrew Morton, Wanpeng Li, gong.chen, linux-mm,
Naoya Horiguchi
# Resending due to sending failure. Sorry if you received twice.
---
mce-test detected a test failure when injecting error to a thp tail page.
This is because we take page refcount of the tail page in madvise_hwpoison()
while the fix in commit a3e0f9e47d5e ("mm/memory-failure.c: transfer page
count from head page to tail page after split thp") assumes that we always
take refcount on the head page.
When a real memory error happens we take refcount on the head page where
memory_failure() is called without MF_COUNT_INCREASED set, so it seems to me
that testing memory error on thp tail page using madvise makes little sense.
This patch cancels moving refcount in !MF_COUNT_INCREASED for valid testing.
Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: stable@vger.kernel.org # 3.9+: a3e0f9e47d5e
---
mm/memory-failure.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git v3.14-rc1.orig/mm/memory-failure.c v3.14-rc1/mm/memory-failure.c
index ab55d489eb05..16886ddb6ab4 100644
--- v3.14-rc1.orig/mm/memory-failure.c
+++ v3.14-rc1/mm/memory-failure.c
@@ -1042,8 +1042,10 @@ static int hwpoison_user_mappings(struct page *p, unsigned long pfn,
* to it. Similarly, page lock is shifted.
*/
if (hpage != p) {
- put_page(hpage);
- get_page(p);
+ if (!(flags && MF_COUNT_INCREASED)) {
+ put_page(hpage);
+ get_page(p);
+ }
lock_page(p);
unlock_page(hpage);
*hpagep = p;
--
1.8.5.3
--
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 threadend of thread, other threads:[~2014-02-07 22:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <52f54d29.89cfe00a.4277.4d3dSMTPIN_ADDED_BROKEN@mx.google.com>
2014-02-07 21:43 ` [PATCH] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED Andrew Morton
2014-02-07 22:00 ` Naoya Horiguchi
2014-02-07 21:16 Naoya Horiguchi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox