From: Wanpeng Li <wanpeng.li@hotmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>,
Tony Luck <tony.luck@intel.com>, Andi Kleen <andi@firstfloor.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Wanpeng Li <wanpeng.li@hotmail.com>,
stable@vger.kernel.org
Subject: [PATCH v2 2/2] mm/hwpoison: fix fail isolate hugetlbfs page w/ refcount held
Date: Fri, 7 Aug 2015 18:16:42 +0800 [thread overview]
Message-ID: <BLU436-SMTP25999BF1F67C167749C58DB80730@phx.gbl> (raw)
In-Reply-To: <1438942602-55614-1-git-send-email-wanpeng.li@hotmail.com>
Hugetlbfs pages will get a refcount in get_any_page() or madvise_hwpoison()
if soft offline through madvise. The refcount which held by soft offline
path should be released if fail to isolate hugetlbfs pages. This patch fix
it by reducing a refcount for both isolate successfully and failure.
Cc: <stable@vger.kernel.org> # 3.9+
Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com>
---
mm/memory-failure.c | 13 ++++++-------
1 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 001f1ba..8077b1c 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1557,13 +1557,12 @@ static int soft_offline_huge_page(struct page *page, int flags)
unlock_page(hpage);
ret = isolate_huge_page(hpage, &pagelist);
- if (ret) {
- /*
- * get_any_page() and isolate_huge_page() takes a refcount each,
- * so need to drop one here.
- */
- put_page(hpage);
- } else {
+ /*
+ * get_any_page() and isolate_huge_page() takes a refcount each,
+ * so need to drop one here.
+ */
+ put_page(hpage);
+ if (!ret) {
pr_info("soft offline: %#lx hugepage failed to isolate\n", pfn);
return -EBUSY;
}
--
1.7.1
--
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>
next parent reply other threads:[~2015-08-07 10:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1438942602-55614-1-git-send-email-wanpeng.li@hotmail.com>
2015-08-07 10:16 ` Wanpeng Li [this message]
2015-08-10 1:05 ` Naoya Horiguchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=BLU436-SMTP25999BF1F67C167749C58DB80730@phx.gbl \
--to=wanpeng.li@hotmail.com \
--cc=akpm@linux-foundation.org \
--cc=andi@firstfloor.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=n-horiguchi@ah.jp.nec.com \
--cc=stable@vger.kernel.org \
--cc=tony.luck@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox