summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-10-04 19:33:12 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2022-10-04 19:33:12 +0300
commit51eaa866a50f3e5f006b0c4876ddfa0e5c72c5f0 (patch)
tree9a544f7df35866d79a4f519ec0c083309cb6efeb /drivers
parent7db99f01d1879f30af95f14dfd5cbcf009d15166 (diff)
parentf9781bb18ed828e7b83b7bac4a4ad7cd497ee7d7 (diff)
downloadlinux-51eaa866a50f3e5f006b0c4876ddfa0e5c72c5f0.tar.xz
Merge tag 'ras_core_for_v6.1_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 RAS updates from Borislav Petkov: - Fix the APEI MCE callback handler to consult the hardware about the granularity of the memory error instead of hard-coding it - Offline memory pages on Intel machines after 2 errors reported per page * tag 'ras_core_for_v6.1_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/mce: Retrieve poison range from hardware RAS/CEC: Reduce offline page threshold for Intel systems
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ras/cec.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/ras/cec.c b/drivers/ras/cec.c
index 42f2fc0bc8a9..321af498ee11 100644
--- a/drivers/ras/cec.c
+++ b/drivers/ras/cec.c
@@ -556,6 +556,14 @@ static int __init cec_init(void)
if (ce_arr.disabled)
return -ENODEV;
+ /*
+ * Intel systems may avoid uncorrectable errors
+ * if pages with corrected errors are aggressively
+ * taken offline.
+ */
+ if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
+ action_threshold = 2;
+
ce_arr.array = (void *)get_zeroed_page(GFP_KERNEL);
if (!ce_arr.array) {
pr_err("Error allocating CE array page!\n");