* [Qemu-devel] [PATCH] Fix failure to create q35 machine
@ 2013-04-10 2:59 Hu Tao
2013-04-10 8:10 ` Markus Armbruster
2013-04-10 8:43 ` [Qemu-devel] [PATCH v2] " Hu Tao
0 siblings, 2 replies; 4+ messages in thread
From: Hu Tao @ 2013-04-10 2:59 UTC (permalink / raw)
To: qemu-devel; +Cc: Paolo Bonzini
This is a regression introduced by c0907c9e6417c. -M q35
to reproduce the problem.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
default-configs/i386-softmmu.mak | 2 +-
default-configs/x86_64-softmmu.mak | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/default-configs/i386-softmmu.mak b/default-configs/i386-softmmu.mak
index 4ac0694..6d9d364 100644
--- a/default-configs/i386-softmmu.mak
+++ b/default-configs/i386-softmmu.mak
@@ -42,6 +42,6 @@ CONFIG_ISA_TESTDEV=y
CONFIG_VMPORT=y
CONFIG_SGA=y
CONFIG_LPC_ICH9=y
-CONFIG_Q35=y
+CONFIG_PCI_Q35=y
CONFIG_APIC=y
CONFIG_IOAPIC=y
diff --git a/default-configs/x86_64-softmmu.mak b/default-configs/x86_64-softmmu.mak
index bf4091c..3b06310 100644
--- a/default-configs/x86_64-softmmu.mak
+++ b/default-configs/x86_64-softmmu.mak
@@ -42,6 +42,6 @@ CONFIG_ISA_TESTDEV=y
CONFIG_VMPORT=y
CONFIG_SGA=y
CONFIG_LPC_ICH9=y
-CONFIG_Q35=y
+CONFIG_PCI_Q35=y
CONFIG_APIC=y
CONFIG_IOAPIC=y
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix failure to create q35 machine
2013-04-10 2:59 [Qemu-devel] [PATCH] Fix failure to create q35 machine Hu Tao
@ 2013-04-10 8:10 ` Markus Armbruster
2013-04-10 8:39 ` Hu Tao
2013-04-10 8:43 ` [Qemu-devel] [PATCH v2] " Hu Tao
1 sibling, 1 reply; 4+ messages in thread
From: Markus Armbruster @ 2013-04-10 8:10 UTC (permalink / raw)
To: Hu Tao; +Cc: Paolo Bonzini, qemu-devel
Hu Tao <hutao@cn.fujitsu.com> writes:
> This is a regression introduced by c0907c9e6417c. -M q35
> to reproduce the problem.
Including a complete reproducer in the commit message would be a bit
nicer. Here's one:
$ qemu-system-x86_64 -nodefaults -vnc :0 -M q35
WARNING: failed to find q35-acpi-dsdt.aml
upstream-qemu: Unknown device 'q35-pcihost' for default sysbus
Aborted (core dumped)
Tested-by: Markus Armbruster <armbru@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix failure to create q35 machine
2013-04-10 8:10 ` Markus Armbruster
@ 2013-04-10 8:39 ` Hu Tao
0 siblings, 0 replies; 4+ messages in thread
From: Hu Tao @ 2013-04-10 8:39 UTC (permalink / raw)
To: Markus Armbruster; +Cc: Paolo Bonzini, qemu-devel
On Wed, Apr 10, 2013 at 10:10:06AM +0200, Markus Armbruster wrote:
> Hu Tao <hutao@cn.fujitsu.com> writes:
>
> > This is a regression introduced by c0907c9e6417c. -M q35
> > to reproduce the problem.
>
> Including a complete reproducer in the commit message would be a bit
> nicer. Here's one:
>
> $ qemu-system-x86_64 -nodefaults -vnc :0 -M q35
> WARNING: failed to find q35-acpi-dsdt.aml
This line is somehow unrelated.
> upstream-qemu: Unknown device 'q35-pcihost' for default sysbus
> Aborted (core dumped)
>
> Tested-by: Markus Armbruster <armbru@redhat.com>
Thanks for testing! I'll send v2.
--
Regards,
Hu Tao
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PATCH v2] Fix failure to create q35 machine
2013-04-10 2:59 [Qemu-devel] [PATCH] Fix failure to create q35 machine Hu Tao
2013-04-10 8:10 ` Markus Armbruster
@ 2013-04-10 8:43 ` Hu Tao
1 sibling, 0 replies; 4+ messages in thread
From: Hu Tao @ 2013-04-10 8:43 UTC (permalink / raw)
To: qemu-devel; +Cc: Paolo Bonzini, Markus Armbruster
This is a regression introduced by c0907c9e6417c. How to reproduce:
$ qemu-system-x86_64 -nodefaults -vnc :0 -M q35
qemu-system-x86_64: Unknown device 'q35-pcihost' for default sysbus
Aborted (core dumped)
Tested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
default-configs/i386-softmmu.mak | 2 +-
default-configs/x86_64-softmmu.mak | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/default-configs/i386-softmmu.mak b/default-configs/i386-softmmu.mak
index 4ac0694..6d9d364 100644
--- a/default-configs/i386-softmmu.mak
+++ b/default-configs/i386-softmmu.mak
@@ -42,6 +42,6 @@ CONFIG_ISA_TESTDEV=y
CONFIG_VMPORT=y
CONFIG_SGA=y
CONFIG_LPC_ICH9=y
-CONFIG_Q35=y
+CONFIG_PCI_Q35=y
CONFIG_APIC=y
CONFIG_IOAPIC=y
diff --git a/default-configs/x86_64-softmmu.mak b/default-configs/x86_64-softmmu.mak
index bf4091c..3b06310 100644
--- a/default-configs/x86_64-softmmu.mak
+++ b/default-configs/x86_64-softmmu.mak
@@ -42,6 +42,6 @@ CONFIG_ISA_TESTDEV=y
CONFIG_VMPORT=y
CONFIG_SGA=y
CONFIG_LPC_ICH9=y
-CONFIG_Q35=y
+CONFIG_PCI_Q35=y
CONFIG_APIC=y
CONFIG_IOAPIC=y
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-10 8:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-10 2:59 [Qemu-devel] [PATCH] Fix failure to create q35 machine Hu Tao
2013-04-10 8:10 ` Markus Armbruster
2013-04-10 8:39 ` Hu Tao
2013-04-10 8:43 ` [Qemu-devel] [PATCH v2] " Hu Tao
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).