From ba24f011d95ce9be85dba285dfabe5c13acce664 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 21 Mar 2017 07:40:30 +0100 Subject: [PATCH 06/12] cirrus: fix cirrus_invalidate_region RH-Author: Gerd Hoffmann Message-id: <1490082033-671-5-git-send-email-kraxel@redhat.com> Patchwork-id: 74410 O-Subject: [RHEL-7.3.z qemu-kvm-rhev PATCH 4/7] cirrus: fix cirrus_invalidate_region Bugzilla: 1430061 RH-Acked-by: Dr. David Alan Gilbert RH-Acked-by: Laurent Vivier RH-Acked-by: Paolo Bonzini off_cur_end is exclusive, so off_cur_end == cirrus_addr_mask is valid. Fix calculation to make sure to allow that, otherwise the assert added by commit f153b563f8cf121aebf5a2fff5f0110faf58ccb3 can trigger for valid blits. Test case: boot windows nt 4.0 Signed-off-by: Gerd Hoffmann Message-id: 1489579606-26020-1-git-send-email-kraxel@redhat.com (cherry picked from commit e048dac616748273c2153490e9fdf1da242f0cad) Signed-off-by: Miroslav Rezanina --- hw/display/cirrus_vga.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/display/cirrus_vga.c b/hw/display/cirrus_vga.c index 016971e..c020671 100644 --- a/hw/display/cirrus_vga.c +++ b/hw/display/cirrus_vga.c @@ -666,11 +666,11 @@ static void cirrus_invalidate_region(CirrusVGAState * s, int off_begin, } for (y = 0; y < lines; y++) { - off_cur = off_begin; - off_cur_end = (off_cur + bytesperline) & s->cirrus_addr_mask; + off_cur = off_begin; + off_cur_end = ((off_cur + bytesperline - 1) & s->cirrus_addr_mask) + 1; assert(off_cur_end >= off_cur); memory_region_set_dirty(&s->vga.vram, off_cur, off_cur_end - off_cur); - off_begin += off_pitch; + off_begin += off_pitch; } } -- 1.8.3.1