Skip to content

Commit

Permalink
MCE, AMD: Limit MCE decoding to current families for now
Browse files Browse the repository at this point in the history
Limit MCE error decoding to current and older families only (K8-F11h).

Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
  • Loading branch information
Borislav Petkov committed Aug 24, 2010
1 parent 76be97c commit e045c29
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions drivers/edac/edac_mce_amd.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,11 +426,15 @@ static struct notifier_block amd_mce_dec_nb = {
static int __init mce_amd_init(void)
{
/*
* We can decode MCEs for Opteron and later CPUs:
* We can decode MCEs for K8, F10h and F11h CPUs:
*/
if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) &&
(boot_cpu_data.x86 >= 0xf))
atomic_notifier_chain_register(&x86_mce_decoder_chain, &amd_mce_dec_nb);
if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
return 0;

if (boot_cpu_data.x86 < 0xf || boot_cpu_data.x86 > 0x11)
return 0;

atomic_notifier_chain_register(&x86_mce_decoder_chain, &amd_mce_dec_nb);

return 0;
}
Expand Down

0 comments on commit e045c29

Please sign in to comment.