diff options
author | Ingo Molnar <mingo@elte.hu> | 2012-01-26 05:40:13 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2012-01-26 05:40:13 -0500 |
commit | 4e9f44ba29f20484615a461244bfd3a419391490 (patch) | |
tree | 490dd38bb8d14765327cee0be2f9731254e9c402 /drivers/base | |
parent | 87f71ae2dd7471c1b4c94100be1f218e91dc64c3 (diff) | |
parent | 5f7b88d51e89771f64c15903b96b5933dd0bc6d8 (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')
-rw-r--r-- | drivers/base/memory.c | 2 |
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, | |||
466 | if (strict_strtoull(buf, 0, &pfn) < 0) | 466 | if (strict_strtoull(buf, 0, &pfn) < 0) |
467 | return -EINVAL; | 467 | return -EINVAL; |
468 | pfn >>= PAGE_SHIFT; | 468 | pfn >>= PAGE_SHIFT; |
469 | ret = __memory_failure(pfn, 0, 0); | 469 | ret = memory_failure(pfn, 0, 0); |
470 | return ret ? ret : count; | 470 | return ret ? ret : count; |
471 | } | 471 | } |
472 | 472 | ||