Skip to content

Commit d713581

Browse files
committed
Merge tag 'ras-urgent-2026-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 MCE fix from Ingo Molnar: "Fix incorrect hardware errors reported on Zen3 CPUs, such as bogus L3 cache deferred errors (Yazen Ghannam)" * tag 'ras-urgent-2026-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/mce/amd: Filter bogus hardware errors on Zen3 clients
2 parents c919577 + 0422b07 commit d713581

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

  • arch/x86/kernel/cpu/mce

arch/x86/kernel/cpu/mce/amd.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,14 @@ bool amd_filter_mce(struct mce *m)
604604
enum smca_bank_types bank_type = smca_get_bank_type(m->extcpu, m->bank);
605605
struct cpuinfo_x86 *c = &boot_cpu_data;
606606

607+
/* Bogus hw errors on Cezanne A0. */
608+
if (c->x86 == 0x19 &&
609+
c->x86_model == 0x50 &&
610+
c->x86_stepping == 0x0) {
611+
if (!(m->status & MCI_STATUS_EN))
612+
return true;
613+
}
614+
607615
/* See Family 17h Models 10h-2Fh Erratum #1114. */
608616
if (c->x86 == 0x17 &&
609617
c->x86_model >= 0x10 && c->x86_model <= 0x2F &&

0 commit comments

Comments
 (0)