cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
9ae3a8
From e7fe5cf70d63552006e8c9eb660db95279f2a3a9 Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Fri, 22 Jul 2016 09:34:41 +0200
9ae3a8
Subject: [PATCH 4/4] qxl: fix qxl_set_dirty call in qxl_dirty_one_surface
9ae3a8
9ae3a8
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Message-id: <1469180081-28522-5-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 71316
9ae3a8
O-Subject: [RHEL-7.3 qemu-kvm PATCH v2 4/4] qxl: fix qxl_set_dirty call in qxl_dirty_one_surface
9ae3a8
Bugzilla: 1355730
9ae3a8
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
9ae3a8
RH-Acked-by: John Snow <jsnow@redhat.com>
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
9ae3a8
qxl_set_dirty() expects start and end as range specification.
9ae3a8
qxl_dirty_one_surface passes 'size' instead of 'offset + size' as end
9ae3a8
parameter.  Fix that.  Also use uint64_t everywhere while being at it.
9ae3a8
9ae3a8
Bug was added by "e25139b qxl: set only off-screen surfaces dirty instead
9ae3a8
of the whole vram" and carried forward unnoticed by "5cdc402 qxl: fix
9ae3a8
surface migration".
9ae3a8
9ae3a8
Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
9ae3a8
Message-id: 1468413187-22071-1-git-send-email-kraxel@redhat.com
9ae3a8
(cherry picked from commit e0127d2eec9cd5676ea9f3c47c2a7579a02c0466)
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
9ae3a8
Conflicts:
9ae3a8
	hw/display/trace-events
9ae3a8
---
9ae3a8
 hw/display/qxl.c | 11 ++++++-----
9ae3a8
 trace-events     |  2 +-
9ae3a8
 2 files changed, 7 insertions(+), 6 deletions(-)
9ae3a8
9ae3a8
diff --git a/hw/display/qxl.c b/hw/display/qxl.c
9ae3a8
index d65c830..f762439 100644
9ae3a8
--- a/hw/display/qxl.c
9ae3a8
+++ b/hw/display/qxl.c
9ae3a8
@@ -1825,16 +1825,17 @@ static void qxl_hw_text_update(void *opaque, console_ch_t *chardata)
9ae3a8
 static void qxl_dirty_one_surface(PCIQXLDevice *qxl, QXLPHYSICAL pqxl,
9ae3a8
                                   uint32_t height, int32_t stride)
9ae3a8
 {
9ae3a8
-    uint64_t offset;
9ae3a8
-    uint32_t slot, size;
9ae3a8
+    uint64_t offset, size;
9ae3a8
+    uint32_t slot;
9ae3a8
     bool rc;
9ae3a8
 
9ae3a8
     rc = qxl_get_check_slot_offset(qxl, pqxl, &slot, &offset);
9ae3a8
     assert(rc == true);
9ae3a8
-    size = height * abs(stride);
9ae3a8
-    trace_qxl_surfaces_dirty(qxl->id, (int)offset, size);
9ae3a8
+    size = (uint64_t)height * abs(stride);
9ae3a8
+    trace_qxl_surfaces_dirty(qxl->id, offset, size);
9ae3a8
     qxl_set_dirty(qxl->guest_slots[slot].mr,
9ae3a8
-                  qxl->guest_slots[slot].offset + offset, size);
9ae3a8
+                  qxl->guest_slots[slot].offset + offset,
9ae3a8
+                  qxl->guest_slots[slot].offset + offset + size);
9ae3a8
 }
9ae3a8
 
9ae3a8
 static void qxl_dirty_surfaces(PCIQXLDevice *qxl)
9ae3a8
diff --git a/trace-events b/trace-events
9ae3a8
index 4da84b2..af5147a 100644
9ae3a8
--- a/trace-events
9ae3a8
+++ b/trace-events
9ae3a8
@@ -1078,7 +1078,7 @@ qxl_spice_reset_image_cache(int qid) "%d"
9ae3a8
 qxl_spice_reset_memslots(int qid) "%d"
9ae3a8
 qxl_spice_update_area(int qid, uint32_t surface_id, uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "%d sid=%d [%d,%d,%d,%d]"
9ae3a8
 qxl_spice_update_area_rest(int qid, uint32_t num_dirty_rects, uint32_t clear_dirty_region) "%d #d=%d clear=%d"
9ae3a8
-qxl_surfaces_dirty(int qid, int offset, int size) "%d offset=%d size=%d"
9ae3a8
+qxl_surfaces_dirty(int qid, uint64_t offset, uint64_t size) "%d offset=0x%"PRIx64" size=0x%"PRIx64
9ae3a8
 qxl_send_events(int qid, uint32_t events) "%d %d"
9ae3a8
 qxl_send_events_vm_stopped(int qid, uint32_t events) "%d %d"
9ae3a8
 qxl_set_guest_bug(int qid) "%d"
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8