From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) by kanga.kvack.org (Postfix) with ESMTP id 37A9A6B0089 for ; Mon, 9 Dec 2013 04:53:44 -0500 (EST) Received: by mail-pd0-f176.google.com with SMTP id w10so4932635pde.35 for ; Mon, 09 Dec 2013 01:53:43 -0800 (PST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com. [119.145.14.66]) by mx.google.com with ESMTPS id ws5si6811040pab.6.2013.12.09.01.53.34 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 09 Dec 2013 01:53:42 -0800 (PST) Message-ID: <52A592DE.7010302@huawei.com> Date: Mon, 9 Dec 2013 17:52:30 +0800 From: Xishi Qiu MIME-Version: 1.0 Subject: [PATCH] mm: add show num_poisoned_pages when oom Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Andrew Morton , KOSAKI Motohiro , Michal Hocko , Mel Gorman , rientjes@google.com Cc: LKML , linux-mm@kvack.org, Xishi Qiu Show num_poisoned_pages when oom, it is helpful to find the reason. Signed-off-by: Xishi Qiu --- 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 poisoned\n", atomic_long_read(&num_poisoned_pages)); +#endif } -- 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: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933420Ab3LIJy3 (ORCPT ); Mon, 9 Dec 2013 04:54:29 -0500 Received: from szxga03-in.huawei.com ([119.145.14.66]:10340 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932387Ab3LIJy0 (ORCPT ); Mon, 9 Dec 2013 04:54:26 -0500 Message-ID: <52A592DE.7010302@huawei.com> Date: Mon, 9 Dec 2013 17:52:30 +0800 From: Xishi Qiu User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Andrew Morton , KOSAKI Motohiro , Michal Hocko , Mel Gorman , CC: LKML , , Xishi Qiu Subject: [PATCH] mm: add show num_poisoned_pages when oom Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.135.74.196] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Show num_poisoned_pages when oom, it is helpful to find the reason. Signed-off-by: Xishi Qiu --- 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 poisoned\n", atomic_long_read(&num_poisoned_pages)); +#endif } -- 1.7.1