e46082b3ea
530b27fd-x86-MCE-Fix-race-condition-in-mctelem_reserve.patch 530b2880-Nested-VMX-update-nested-paging-mode-on-vmexit.patch 530b28c5-x86-MSI-don-t-risk-division-by-zero.patch 530c54c3-x86-mce-Reduce-boot-time-logspam.patch 5310bac3-mm-ensure-useful-progress-in-decrease_reservation.patch 5315a254-IOMMU-generalize-and-correct-softirq-processing.patch 5315a3bb-x86-don-t-propagate-acpi_skip_timer_override-do-Dom0.patch 5315a43a-x86-ACPI-also-print-address-space-for-PM1x-fields.patch 531d8db1-x86-hvm-refine-the-judgment-on-IDENT_PT-for-EMT.patch 531d8e09-x86-HVM-fix-memory-type-merging-in-epte_get_entry_emt.patch 531d8e34-x86-HVM-consolidate-passthrough-handling-in-epte_get_entry_emt.patch 531d8fd0-kexec-identify-which-cpu-the-kexec-image-is-being-executed-on.patch 531dc0e2-xmalloc-handle-correctly-page-allocation-when-align-size.patch - Add conversion tool for migrating xend/xm managed VMs to libvirt xen2libvirt.py (Jim Fehlig) OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=304
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;
|
|
}
|
|
|