Blame SOURCES/kvm-virtio-gpu-tweak-scanout-disable.patch

357786
From 403646c800359dcc52f3bbbf348dda917667d9d1 Mon Sep 17 00:00:00 2001
357786
From: Gerd Hoffmann <kraxel@redhat.com>
357786
Date: Wed, 4 Jul 2018 09:54:07 +0200
357786
Subject: [PATCH 13/89] virtio-gpu: tweak scanout disable.
357786
MIME-Version: 1.0
357786
Content-Type: text/plain; charset=UTF-8
357786
Content-Transfer-Encoding: 8bit
357786
357786
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
357786
Message-id: <20180704095409.14514-2-kraxel@redhat.com>
357786
Patchwork-id: 81226
357786
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 1/3] virtio-gpu: tweak scanout disable.
357786
Bugzilla: 1589634
357786
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
357786
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
357786
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
357786
357786
- Factor out the code to virtio_gpu_disable_scanout().
357786
- Allow disable scanout 0, show a message then.
357786
- Clear scanout->resource_id.
357786
357786
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
357786
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
357786
Message-id: 20180702162443.16796-2-kraxel@redhat.com
357786
(cherry picked from commit da566a18a7799e5a655cd9f87e222b672cc93e7b)
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 hw/display/virtio-gpu.c | 47 +++++++++++++++++++++++++++++------------------
357786
 1 file changed, 29 insertions(+), 18 deletions(-)
357786
357786
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
357786
index 2dd3c34..054ec73 100644
357786
--- a/hw/display/virtio-gpu.c
357786
+++ b/hw/display/virtio-gpu.c
357786
@@ -399,6 +399,34 @@ static void virtio_gpu_resource_create_2d(VirtIOGPU *g,
357786
     g->hostmem += res->hostmem;
357786
 }
357786
 
357786
+static void virtio_gpu_disable_scanout(VirtIOGPU *g, int scanout_id)
357786
+{
357786
+    struct virtio_gpu_scanout *scanout = &g->scanout[scanout_id];
357786
+    struct virtio_gpu_simple_resource *res;
357786
+    DisplaySurface *ds = NULL;
357786
+
357786
+    if (scanout->resource_id == 0) {
357786
+        return;
357786
+    }
357786
+
357786
+    res = virtio_gpu_find_resource(g, scanout->resource_id);
357786
+    if (res) {
357786
+        res->scanout_bitmask &= ~(1 << scanout_id);
357786
+    }
357786
+
357786
+    if (scanout_id == 0) {
357786
+        /* primary head */
357786
+        ds = qemu_create_message_surface(scanout->width  ?: 640,
357786
+                                         scanout->height ?: 480,
357786
+                                         "Guest disabled display.");
357786
+    }
357786
+    dpy_gfx_replace_surface(scanout->con, ds);
357786
+    scanout->resource_id = 0;
357786
+    scanout->ds = NULL;
357786
+    scanout->width = 0;
357786
+    scanout->height = 0;
357786
+}
357786
+
357786
 static void virtio_gpu_resource_destroy(VirtIOGPU *g,
357786
                                         struct virtio_gpu_simple_resource *res)
357786
 {
357786
@@ -583,24 +611,7 @@ static void virtio_gpu_set_scanout(VirtIOGPU *g,
357786
 
357786
     g->enable = 1;
357786
     if (ss.resource_id == 0) {
357786
-        scanout = &g->scanout[ss.scanout_id];
357786
-        if (scanout->resource_id) {
357786
-            res = virtio_gpu_find_resource(g, scanout->resource_id);
357786
-            if (res) {
357786
-                res->scanout_bitmask &= ~(1 << ss.scanout_id);
357786
-            }
357786
-        }
357786
-        if (ss.scanout_id == 0) {
357786
-            qemu_log_mask(LOG_GUEST_ERROR,
357786
-                          "%s: illegal scanout id specified %d",
357786
-                          __func__, ss.scanout_id);
357786
-            cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID;
357786
-            return;
357786
-        }
357786
-        dpy_gfx_replace_surface(g->scanout[ss.scanout_id].con, NULL);
357786
-        scanout->ds = NULL;
357786
-        scanout->width = 0;
357786
-        scanout->height = 0;
357786
+        virtio_gpu_disable_scanout(g, ss.scanout_id);
357786
         return;
357786
     }
357786
 
357786
-- 
357786
1.8.3.1
357786