Blame SOURCES/kvm-virtio-gpu-update-old-resource-too.patch

383d26
From 10ece778cf0de01b5fb9c853fc27ea3bb7d40a5e Mon Sep 17 00:00:00 2001
383d26
From: Gerd Hoffmann <kraxel@redhat.com>
383d26
Date: Wed, 4 Jul 2018 09:54:08 +0200
383d26
Subject: [PATCH 14/89] virtio-gpu: update old resource too.
383d26
MIME-Version: 1.0
383d26
Content-Type: text/plain; charset=UTF-8
383d26
Content-Transfer-Encoding: 8bit
383d26
383d26
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
383d26
Message-id: <20180704095409.14514-3-kraxel@redhat.com>
383d26
Patchwork-id: 81227
383d26
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 2/3] virtio-gpu: update old resource too.
383d26
Bugzilla: 1589634
383d26
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
383d26
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
383d26
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
383d26
383d26
When switching scanout from one resource to another we must update the
383d26
scanout_bitmask field for both new (set bit) and old (clear bit)
383d26
resource.
383d26
383d26
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
383d26
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
383d26
Message-id: 20180702162443.16796-3-kraxel@redhat.com
383d26
(cherry picked from commit c806cfa036a7ec991170eb9899f3a676bfcc3253)
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 hw/display/virtio-gpu.c | 7 ++++++-
383d26
 1 file changed, 6 insertions(+), 1 deletion(-)
383d26
383d26
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
383d26
index 054ec73..336dc59 100644
383d26
--- a/hw/display/virtio-gpu.c
383d26
+++ b/hw/display/virtio-gpu.c
383d26
@@ -590,7 +590,7 @@ static void virtio_unref_resource(pixman_image_t *image, void *data)
383d26
 static void virtio_gpu_set_scanout(VirtIOGPU *g,
383d26
                                    struct virtio_gpu_ctrl_command *cmd)
383d26
 {
383d26
-    struct virtio_gpu_simple_resource *res;
383d26
+    struct virtio_gpu_simple_resource *res, *ores;
383d26
     struct virtio_gpu_scanout *scanout;
383d26
     pixman_format_code_t format;
383d26
     uint32_t offset;
383d26
@@ -664,6 +664,11 @@ static void virtio_gpu_set_scanout(VirtIOGPU *g,
383d26
         dpy_gfx_replace_surface(g->scanout[ss.scanout_id].con, scanout->ds);
383d26
     }
383d26
 
383d26
+    ores = virtio_gpu_find_resource(g, scanout->resource_id);
383d26
+    if (ores) {
383d26
+        ores->scanout_bitmask &= ~(1 << ss.scanout_id);
383d26
+    }
383d26
+
383d26
     res->scanout_bitmask |= (1 << ss.scanout_id);
383d26
     scanout->resource_id = ss.resource_id;
383d26
     scanout->x = ss.r.x;
383d26
-- 
383d26
1.8.3.1
383d26