summary refs log tree commit diff stats
path: root/vl.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2013-07-22 15:34:12 +0200
committerGerd Hoffmann <kraxel@redhat.com>2013-07-30 10:25:47 +0200
commit58ae52a8dc7752e3da9a905678580b4cb8181cdc (patch)
tree9cca46e13c2b4e5bbe9a30ea6d484949bf882759 /vl.c
parentdbe49aea76a7805f05b33d548b2e543b51fa8bb1 (diff)
downloadfocaccia-qemu-58ae52a8dc7752e3da9a905678580b4cb8181cdc.tar.gz
focaccia-qemu-58ae52a8dc7752e3da9a905678580b4cb8181cdc.zip
spice: fix display initialization
Spice has two display interface implementations:  One integrated into
the qxl graphics card, and one generic which can operate with every
qemu-emulated graphics card.

The generic one is activated in case spice is used without qxl.  The
logic for that only caught the "-vga qxl" case, "-device qxl-vga" goes
unnoticed.  Fix that by adding a check in the spice interface
registration so we'll notice the qxl card no matter how it is created.

https://bugzilla.redhat.com/show_bug.cgi?id=981094

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 25b8f2ff38..f422a1cae4 100644
--- a/vl.c
+++ b/vl.c
@@ -4387,7 +4387,7 @@ int main(int argc, char **argv, char **envp)
     }
 #endif
 #ifdef CONFIG_SPICE
-    if (using_spice && !qxl_enabled) {
+    if (using_spice && !spice_displays) {
         qemu_spice_display_init(ds);
     }
 #endif