Skip to content

Commit

Permalink
x86/MCE/AMD: Turn off MC4_MISC thresholding on all family 0x15 models
Browse files Browse the repository at this point in the history
MC4_MISC thresholding is not supported on all family 0x15 processors,
hence skip the x86_model check when applying the quirk.

 [ bp: massage commit message. ]

Signed-off-by: Shirish S <shirish.s@amd.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Vishal Verma <vishal.l.verma@intel.com>
Cc: x86-ml <x86@kernel.org>
Link: https://lkml.kernel.org/r/1547106849-3476-2-git-send-email-shirish.s@amd.com
  • Loading branch information
Shirish S authored and suryasaimadhu committed Jan 15, 2019
1 parent b62928f commit c95b323
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions arch/x86/kernel/cpu/mce/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1612,11 +1612,10 @@ static int __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
mce_flags.overflow_recov = 1;

/*
* Turn off MC4_MISC thresholding banks on those models since
* Turn off MC4_MISC thresholding banks on all models since
* they're not supported there.
*/
if (c->x86 == 0x15 &&
(c->x86_model >= 0x10 && c->x86_model <= 0x1f)) {
if (c->x86 == 0x15) {
int i;
u64 hwcr;
bool need_toggle;
Expand Down

0 comments on commit c95b323

Please sign in to comment.