diff options
| author | Avi Kivity | 2011-12-15 15:24:49 +0100 |
|---|---|---|
| committer | Avi Kivity | 2011-12-20 13:14:07 +0100 |
| commit | 86e775c654b775d3e295e8a33bb03cc03bdab68d (patch) | |
| tree | d9be19c7f6d72dbe973f9d9a7f0d8df74c285580 /memory.c | |
| parent | framebuffer: drop use of cpu_physical_sync_dirty_bitmap() (diff) | |
| download | qemu-86e775c654b775d3e295e8a33bb03cc03bdab68d.tar.gz qemu-86e775c654b775d3e295e8a33bb03cc03bdab68d.tar.xz qemu-86e775c654b775d3e295e8a33bb03cc03bdab68d.zip | |
memory: replace cpu_physical_sync_dirty_bitmap() with a memory API
The function is still used as the implementation.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'memory.c')
| -rw-r--r-- | memory.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1447,6 +1447,10 @@ MemoryRegionSection memory_region_find(MemoryRegion *address_space, return ret; } +void memory_global_sync_dirty_bitmap(MemoryRegion *address_space) +{ + cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX); +} void set_system_memory_map(MemoryRegion *mr) { |
