28 lines
880 B
Diff
28 lines
880 B
Diff
|
# Commit a5ab9c9fa29cda7e1b18dbcaa69a5dbded96de32
|
||
|
# Date 2014-02-25 09:30:59 +0100
|
||
|
# Author Andrew Cooper <andrew.cooper3@citrix.com>
|
||
|
# Committer Jan Beulich <jbeulich@suse.com>
|
||
|
x86/mce: Reduce boot-time logspam
|
||
|
|
||
|
When booting with "no-mce", the user does not need to be told that "MCE
|
||
|
support [was] disabled by bootparam" for each cpu. Furthermore, a file:line
|
||
|
reference is unnecessary.
|
||
|
|
||
|
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
|
||
|
|
||
|
--- a/xen/arch/x86/cpu/mcheck/mce.c
|
||
|
+++ b/xen/arch/x86/cpu/mcheck/mce.c
|
||
|
@@ -729,8 +729,10 @@ void mcheck_init(struct cpuinfo_x86 *c,
|
||
|
{
|
||
|
enum mcheck_type inited = mcheck_none;
|
||
|
|
||
|
- if (mce_disabled == 1) {
|
||
|
- dprintk(XENLOG_INFO, "MCE support disabled by bootparam\n");
|
||
|
+ if ( mce_disabled )
|
||
|
+ {
|
||
|
+ if ( bsp )
|
||
|
+ printk(XENLOG_INFO "MCE support disabled by bootparam\n");
|
||
|
return;
|
||
|
}
|
||
|
|