aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/cpu/mcheck/mce.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c
index 1cfb623ce11c..a0c2910d96a0 100644
--- a/arch/x86/kernel/cpu/mcheck/mce.c
+++ b/arch/x86/kernel/cpu/mcheck/mce.c
@@ -1273,6 +1273,10 @@ static void mce_cpu_quirks(struct cpuinfo_x86 *c)
1273 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) && 1273 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1274 monarch_timeout < 0) 1274 monarch_timeout < 0)
1275 monarch_timeout = USEC_PER_SEC; 1275 monarch_timeout = USEC_PER_SEC;
1276
1277 /* There are also broken BIOSes on some Pentium M systems. */
1278 if (c->x86 == 6 && c->x86_model == 13 && mce_bootlog < 0)
1279 mce_bootlog = 0;
1276 } 1280 }
1277 if (monarch_timeout < 0) 1281 if (monarch_timeout < 0)
1278 monarch_timeout = 0; 1282 monarch_timeout = 0;