aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2018-02-06 18:24:13 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2018-02-13 16:15:09 +0100
commit0fe1eca7dcef4b0432c858d0eea32a84f014ddc5 (patch)
tree3916ed964cbd288ae2ee550a09286f885fd44ad2 /include
parent77302fb5df05ffca9f41b5b54e3b67c601719d57 (diff)
downloadqemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.zip
qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.gz
qemu-0fe1eca7dcef4b0432c858d0eea32a84f014ddc5.tar.bz2
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 'include')
-rw-r--r--include/exec/memory.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 6779d14..fff9b1d 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -1136,17 +1136,6 @@ bool memory_region_snapshot_get_dirty(MemoryRegion *mr,
hwaddr addr, hwaddr size);
/**
- * memory_region_sync_dirty_bitmap: Synchronize a region's dirty bitmap with
- * any external TLBs (e.g. kvm)
- *
- * Flushes dirty information from accelerators such as kvm and vhost-net
- * and makes it available to users of the memory API.
- *
- * @mr: the region being flushed.
- */
-void memory_region_sync_dirty_bitmap(MemoryRegion *mr);
-
-/**
* memory_region_reset_dirty: Mark a range of pages as clean, for a specified
* client.
*