[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <52A670AC.6090504@huawei.com>
Date: Tue, 10 Dec 2013 09:38:52 +0800
From: Xishi Qiu <qiuxishi@...wei.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>,
Michal Hocko <mhocko@...e.cz>, Mel Gorman <mgorman@...e.de>,
<rientjes@...gle.com>, Naoya Horiguchi <n-horiguchi@...jp.nec.com>
CC: LKML <linux-kernel@...r.kernel.org>, <linux-mm@...ck.org>,
Xishi Qiu <qiuxishi@...wei.com>
Subject: [PATCH V2] mm: add show num_poisoned_pages when oom
Show num_poisoned_pages when oom, it is a little helpful to find the reason.
Also it will be emitted anytime show_mem() is called.
Signed-off-by: Xishi Qiu <qiuxishi@...wei.com>
Suggested-by: Naoya Horiguchi <n-horiguchi@...jp.nec.com>
Acked-by: Michal Hocko <mhocko@...e.cz>
Acked-by: David Rientjes <rientjes@...gle.com>
---
lib/show_mem.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/lib/show_mem.c b/lib/show_mem.c
index 5847a49..1cbdcd8 100644
--- a/lib/show_mem.c
+++ b/lib/show_mem.c
@@ -46,4 +46,7 @@ void show_mem(unsigned int filter)
printk("%lu pages in pagetable cache\n",
quicklist_total_size());
#endif
+#ifdef CONFIG_MEMORY_FAILURE
+ printk("%lu pages hwpoisoned\n", atomic_long_read(&num_poisoned_pages));
+#endif
}
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists