From: Gerd Hoffmann Date: Mon, 30 Oct 2017 10:28:30 +0000 (+0100) Subject: vga: fix region checks in wraparound case X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=115788d7a70e9ae255511ca00fc69cce06967472;p=qemu.git vga: fix region checks in wraparound case Cc: "Dr. David Alan Gilbert" Signed-off-by: Gerd Hoffmann Reviewed-by: Dr. David Alan Gilbert Message-id: 20171030102830.4469-1-kraxel@redhat.com --- diff --git a/hw/display/vga.c b/hw/display/vga.c index 1d19f6bc48..a64a0942da 100644 --- a/hw/display/vga.c +++ b/hw/display/vga.c @@ -1666,9 +1666,9 @@ static void vga_draw_graphic(VGACommonState *s, int full_update) /* scanline wraps from end of video memory to the start */ assert(force_shadow); update = memory_region_snapshot_get_dirty(&s->vram, snap, - page0, 0); + page0, s->vbe_size - page0); update |= memory_region_snapshot_get_dirty(&s->vram, snap, - page1, 0); + 0, page1); } else { update = memory_region_snapshot_get_dirty(&s->vram, snap, page0, page1 - page0);