summaryrefslogtreecommitdiff
path: root/drivers/base/memory.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2012-01-26 11:40:13 +0100
committerIngo Molnar <mingo@elte.hu>2012-01-26 11:40:13 +0100
commit4e9f44ba29f20484615a461244bfd3a419391490 (patch)
tree490dd38bb8d14765327cee0be2f9731254e9c402 /drivers/base/memory.c
parent87f71ae2dd7471c1b4c94100be1f218e91dc64c3 (diff)
parent5f7b88d51e89771f64c15903b96b5933dd0bc6d8 (diff)
Merge tag 'mce-recovery-for-tip' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras into x86/mce
Implement MCE recovery for the data load error path and assorted cleanups. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/base/memory.c')
-rw-r--r--drivers/base/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/memory.c b/drivers/base/memory.c
index ed5de58c340f..9b3a71e391f4 100644
--- a/drivers/base/memory.c
+++ b/drivers/base/memory.c
@@ -466,7 +466,7 @@ store_hard_offline_page(struct device *dev,
if (strict_strtoull(buf, 0, &pfn) < 0)
return -EINVAL;
pfn >>= PAGE_SHIFT;
- ret = __memory_failure(pfn, 0, 0);
+ ret = memory_failure(pfn, 0, 0);
return ret ? ret : count;
}