qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] ACPI: call acpi_set_pci_info when only acpi enabled
@ 2017-04-26 19:07 Bruce Rogers
  2017-04-27  9:11 ` Igor Mammedov
  0 siblings, 1 reply; 9+ messages in thread
From: Bruce Rogers @ 2017-04-26 19:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: imammedo, sstabellini, mst, qemu-stable, Bruce Rogers

Commit f0c9d64a exposed an issue with the code order in acpi_setup.
As of that commit, a xenfv machine type guest will no longer start
if using pci passthrough. Re-order the code in that function to
allow acpi_set_pci_info to be called before bailing on the other,
non-related conditions. With this change I can again use pci
passthrough and xenfv together.

Signed-off-by: Bruce Rogers <brogers@suse.com>
---
 hw/i386/acpi-build.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index 2073108..1ec072f 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -2834,6 +2834,13 @@ void acpi_setup(void)
     AcpiBuildState *build_state;
     Object *vmgenid_dev;
 
+    if (!acpi_enabled) {
+        ACPI_BUILD_DPRINTF("ACPI disabled. Bailing out.\n");
+        return;
+    }
+
+    acpi_set_pci_info();
+
     if (!pcms->fw_cfg) {
         ACPI_BUILD_DPRINTF("No fw cfg. Bailing out.\n");
         return;
@@ -2844,15 +2851,8 @@ void acpi_setup(void)
         return;
     }
 
-    if (!acpi_enabled) {
-        ACPI_BUILD_DPRINTF("ACPI disabled. Bailing out.\n");
-        return;
-    }
-
     build_state = g_malloc0(sizeof *build_state);
 
-    acpi_set_pci_info();
-
     acpi_build_tables_init(&tables);
     acpi_build(&tables, MACHINE(pcms));
 
-- 
1.9.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-04-27 19:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-26 19:07 [Qemu-devel] [PATCH] ACPI: call acpi_set_pci_info when only acpi enabled Bruce Rogers
2017-04-27  9:11 ` Igor Mammedov
2017-04-27 15:44   ` Bruce Rogers
2017-04-27 16:08     ` Igor Mammedov
2017-04-27 16:29       ` Bruce Rogers
2017-04-27 16:51       ` Bruce Rogers
2017-04-27 17:35         ` Igor Mammedov
2017-04-27 18:08           ` Stefano Stabellini
2017-04-27 19:57             ` Bruce Rogers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).