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
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
# Commit 7acf827b951b4e8501a777676ddf050d200103a4
|
|
# Date 2014-03-04 11:00:26 +0100
|
|
# Author Jan Beulich <jbeulich@suse.com>
|
|
# Committer Jan Beulich <jbeulich@suse.com>
|
|
x86/ACPI: also print address space for PM1x fields
|
|
|
|
At least one vendor is in the process of making systems available where
|
|
these live in MMIO, not in I/O port space.
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
Acked-by: Keir Fraser <keir@xen.org>
|
|
|
|
--- a/xen/arch/x86/acpi/boot.c
|
|
+++ b/xen/arch/x86/acpi/boot.c
|
|
@@ -404,11 +404,15 @@ acpi_fadt_parse_sleep_info(struct acpi_t
|
|
acpi_fadt_copy_address(pm1b_evt, pm1b_event, pm1_event);
|
|
|
|
printk(KERN_INFO PREFIX
|
|
- "SLEEP INFO: pm1x_cnt[%"PRIx64",%"PRIx64"], "
|
|
- "pm1x_evt[%"PRIx64",%"PRIx64"]\n",
|
|
+ "SLEEP INFO: pm1x_cnt[%d:%"PRIx64",%d:%"PRIx64"], "
|
|
+ "pm1x_evt[%d:%"PRIx64",%d:%"PRIx64"]\n",
|
|
+ acpi_sinfo.pm1a_cnt_blk.space_id,
|
|
acpi_sinfo.pm1a_cnt_blk.address,
|
|
+ acpi_sinfo.pm1b_cnt_blk.space_id,
|
|
acpi_sinfo.pm1b_cnt_blk.address,
|
|
+ acpi_sinfo.pm1a_evt_blk.space_id,
|
|
acpi_sinfo.pm1a_evt_blk.address,
|
|
+ acpi_sinfo.pm1b_evt_blk.space_id,
|
|
acpi_sinfo.pm1b_evt_blk.address);
|
|
|
|
/* Now FACS... */
|