[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20091208211641.8A2FBB151F@basil.firstfloor.org>
Date: Tue, 8 Dec 2009 22:16:41 +0100 (CET)
From: Andi Kleen <andi@...stfloor.org>
To: fengguang.wu@...el.com, linux-kernel@...r.kernel.org,
linux-mm@...ck.org
Subject: [PATCH] [25/31] HWPOISON: Don't do early filtering if filter is disabled
Signed-off-by: Andi Kleen <ak@...ux.intel.com>
---
mm/hwpoison-inject.c | 3 +++
1 file changed, 3 insertions(+)
Index: linux/mm/hwpoison-inject.c
===================================================================
--- linux.orig/mm/hwpoison-inject.c
+++ linux/mm/hwpoison-inject.c
@@ -18,6 +18,8 @@ static int hwpoison_inject(void *data, u
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
+ if (!hwpoison_filter_enable)
+ goto inject;
if (!pfn_valid(pfn))
return -ENXIO;
@@ -48,6 +50,7 @@ static int hwpoison_inject(void *data, u
if (err)
return 0;
+inject:
printk(KERN_INFO "Injecting memory failure at pfn %lx\n", pfn);
return __memory_failure(pfn, 18, MF_COUNT_INCREASED);
}
--
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