Commit 0d57eb8d authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen

HWPOISON: Don't do early filtering if filter is disabled

Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
parent afcf938e
......@@ -18,6 +18,8 @@ static int hwpoison_inject(void *data, u64 val)
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, u64 val)
if (err)
return 0;
inject:
printk(KERN_INFO "Injecting memory failure at pfn %lx\n", pfn);
return __memory_failure(pfn, 18, MF_COUNT_INCREASED);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment