Commit b659294b authored by Ingo Molnar's avatar Ingo Molnar Committed by H. Peter Anvin

x86, mce: print number of MCE banks

The number of MCE banks supported by a CPU is a useful number to know,
so print it out during CPU initialization.

[ Impact: add printout ]
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarHidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
parent cb491fca
...@@ -570,6 +570,8 @@ static int mce_cap_init(void) ...@@ -570,6 +570,8 @@ static int mce_cap_init(void)
rdmsrl(MSR_IA32_MCG_CAP, cap); rdmsrl(MSR_IA32_MCG_CAP, cap);
b = cap & 0xff; b = cap & 0xff;
printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
if (b > MAX_NR_BANKS) { if (b > MAX_NR_BANKS) {
printk(KERN_WARNING printk(KERN_WARNING
"MCE: Using only %u machine check banks out of %u\n", "MCE: Using only %u machine check banks out of %u\n",
...@@ -1287,6 +1289,7 @@ void mcheck_init(struct cpuinfo_x86 *c) ...@@ -1287,6 +1289,7 @@ void mcheck_init(struct cpuinfo_x86 *c)
default: default:
break; break;
} }
printk(KERN_INFO "mce: CPU supports %d MCE banks\n", nr_mce_banks);
} }
static int __init mcheck_disable(char *str) static int __init mcheck_disable(char *str)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment