summaryrefslogtreecommitdiffstats
path: root/hw/display/framebuffer.c
diff options
context:
space:
mode:
authorPaolo Bonzini2018-02-06 18:24:13 +0100
committerPaolo Bonzini2018-02-13 16:15:09 +0100
commit0fe1eca7dcef4b0432c858d0eea32a84f014ddc5 (patch)
tree3916ed964cbd288ae2ee550a09286f885fd44ad2 /hw/display/framebuffer.c
parentmemory: remove memory_region_test_and_clear_dirty (diff)
downloadqemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.gz
qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.xz
qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.zip
memory: hide memory_region_sync_dirty_bitmap behind DirtyBitmapSnapshot
Simplify the users of memory_region_snapshot_and_clear_dirty, so that they do not have to call memory_region_sync_dirty_bitmap explicitly. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display/framebuffer.c')
-rw-r--r--hw/display/framebuffer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/framebuffer.c b/hw/display/framebuffer.c
index d7310d25f2..36e3db189a 100644
--- a/hw/display/framebuffer.c
+++ b/hw/display/framebuffer.c
@@ -83,7 +83,6 @@ void framebuffer_update_display(
if (!mem) {
return;
}
- memory_region_sync_dirty_bitmap(mem);
addr = mem_section->offset_within_region;
src = memory_region_get_ram_ptr(mem) + addr;