51 lines
2.0 KiB
Diff
51 lines
2.0 KiB
Diff
From 94dc0414a7d5dadbbfc29a19617df7facb0ea7d6 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
|
|
Date: Mon, 1 Mar 2021 08:39:19 -0500
|
|
Subject: [PATCH 1/4] qxl: set qxl.ssd.dcl.con on secondary devices
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Message-id: <20210301083920.895324-2-marcandre.lureau@redhat.com>
|
|
Patchwork-id: 101274
|
|
O-Subject: [RHEL-AV-8.4.0 qemu-kvm PATCH 1/2] qxl: set qxl.ssd.dcl.con on secondary devices
|
|
Bugzilla: 1932190
|
|
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
|
|
|
|
From: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
|
On secondary QXL devices, the console is only set on qxl.vga.con. But
|
|
graphic_hw_update_done() is called with qxl.ssd.dcl.con.
|
|
|
|
Like for primary QXL devices, set qxl.sdd.dcl.con = qxl.vga.con.
|
|
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Message-Id: <20210201201422.446552-2-marcandre.lureau@redhat.com>
|
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
(cherry picked from commit c502758670432195d61ff848b1b47b0f78918ae2)
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
hw/display/qxl.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/hw/display/qxl.c b/hw/display/qxl.c
|
|
index 431c107096..50f4756b6a 100644
|
|
--- a/hw/display/qxl.c
|
|
+++ b/hw/display/qxl.c
|
|
@@ -2266,6 +2266,7 @@ static void qxl_realize_secondary(PCIDevice *dev, Error **errp)
|
|
qxl->vga.vram_size, &error_fatal);
|
|
qxl->vga.vram_ptr = memory_region_get_ram_ptr(&qxl->vga.vram);
|
|
qxl->vga.con = graphic_console_init(DEVICE(dev), 0, &qxl_ops, qxl);
|
|
+ qxl->ssd.dcl.con = qxl->vga.con;
|
|
qxl->id = qemu_console_get_index(qxl->vga.con); /* == channel_id */
|
|
|
|
qxl_realize_common(qxl, errp);
|
|
--
|
|
2.27.0
|
|
|