From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMHHK-0005Jb-EV for qemu-devel@nongnu.org; Sat, 08 Mar 2014 08:27:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WMHHB-0006oE-80 for qemu-devel@nongnu.org; Sat, 08 Mar 2014 08:27:02 -0500 Received: from mail-pb0-f43.google.com ([209.85.160.43]:46400) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMHHB-0006nu-2i for qemu-devel@nongnu.org; Sat, 08 Mar 2014 08:26:53 -0500 Received: by mail-pb0-f43.google.com with SMTP id um1so5367770pbc.2 for ; Sat, 08 Mar 2014 05:26:51 -0800 (PST) Message-ID: <531B1A95.4030603@ozlabs.ru> Date: Sun, 09 Mar 2014 00:26:45 +1100 From: Alexey Kardashevskiy MIME-Version: 1.0 References: <1394185045-24868-1-git-send-email-wudxw@linux.vnet.ibm.com> <1394185045-24868-2-git-send-email-wudxw@linux.vnet.ibm.com> <531994DF.4000503@redhat.com> In-Reply-To: <531994DF.4000503@redhat.com> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH v2 2/2] Fix return value of vga initlization on ppc List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , Mark Wu , qemu-devel@nongnu.org, qemu-ppc@nongnu.org Cc: afaerber@suse.de, aliguori@amazon.com On 03/07/2014 08:43 PM, Paolo Bonzini wrote: > Il 07/03/2014 10:37, Mark Wu ha scritto: >> Before spapr_vga_init will returned false if the vga is specified by >> the command '-device VGA' because vga_interface_type was evaluated to >> VGA_NONE. With the change in previous patch of this series, >> spapr_vga_init should return true if it's told that the vga will be >> initialized in flow of the generic devices initialization. >> >> This patch also makes two cleanups: >> 1. skip initialization for VGA_NONE >> 2. remove the useless 'break' > > I think that after this patch, "-nodefaults -device VGA" will get a USB > controller that it didn't get before. I suspect what was meant by "the machine not aware of the graphics device" is that the guest won't work with VGA and without keyboard (default console will be vga + keyboard and not serial) which is USB and this is why the patch is trying to add USB. > > Perhaps this in vl.c: > > bool usb_enabled(bool default_usb) > { > return qemu_opt_get_bool(qemu_get_machine_opts(), "usb", default_usb); > } > > should be > > bool usb_enabled(bool default_usb) > { > return qemu_opt_get_bool(qemu_get_machine_opts(), "usb", > !no_defaults && default_usb); > } > > ? > > Thanks, > > Paolo > >> Signed-off-by: Mark Wu >> --- >> hw/ppc/spapr.c | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c >> index 93d02c1..4d0ac56 100644 >> --- a/hw/ppc/spapr.c >> +++ b/hw/ppc/spapr.c >> @@ -765,13 +765,15 @@ static int spapr_vga_init(PCIBus *pci_bus) >> { >> switch (vga_interface_type) { >> case VGA_NONE: >> + return false; >> + case VGA_DEVICE: >> + return true; >> case VGA_STD: >> return pci_vga_init(pci_bus) != NULL; >> default: >> fprintf(stderr, "This vga model is not supported," >> "currently it only supports -vga std\n"); >> exit(0); >> - break; >> } >> } >> >> > > -- Alexey