d1a627e27f
Fix TCG ld/st optimization (lp 1127369) Fix possible crash with VNC and qxl (bz #919777) Fix kvm module permissions after first install (bz #907215) Switch to seavgabios by default
29 lines
941 B
Diff
29 lines
941 B
Diff
From 73a438802ea86374404df8de9f690589efea3727 Mon Sep 17 00:00:00 2001
|
|
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
Date: Thu, 28 Feb 2013 11:08:50 +0100
|
|
Subject: [PATCH] qxl: better vga init in enter_vga_mode
|
|
|
|
Ask the vga core to update the display. Will trigger dpy_gfx_resize
|
|
if needed. More complete than just calling dpy_gfx_resize.
|
|
|
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
(cherry picked from commit c099e7aa0295678859d58e9e60b7619f6ae3bac8)
|
|
---
|
|
hw/qxl.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/qxl.c b/hw/qxl.c
|
|
index 436e375..80bd92a 100644
|
|
--- a/hw/qxl.c
|
|
+++ b/hw/qxl.c
|
|
@@ -1073,8 +1073,8 @@ static void qxl_enter_vga_mode(PCIQXLDevice *d)
|
|
trace_qxl_enter_vga_mode(d->id);
|
|
qemu_spice_create_host_primary(&d->ssd);
|
|
d->mode = QXL_MODE_VGA;
|
|
- dpy_gfx_resize(d->ssd.ds);
|
|
vga_dirty_log_start(&d->vga);
|
|
+ vga_hw_update();
|
|
}
|
|
|
|
static void qxl_exit_vga_mode(PCIQXLDevice *d)
|