diff options
| author | Blue Swirl <blauwirbel@gmail.com> | 2012-01-22 16:38:21 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-02-04 12:45:10 +0000 |
| commit | cd7a45c95ecf2404810f3c6becb7cb83c5010ad8 (patch) | |
| tree | 49d6bedd8bf8267333293bfc5217687d3175b82c /memory.h | |
| parent | cb437e48ab7ddd9b85843beb524904ee4b565721 (diff) | |
| download | focaccia-qemu-cd7a45c95ecf2404810f3c6becb7cb83c5010ad8.tar.gz focaccia-qemu-cd7a45c95ecf2404810f3c6becb7cb83c5010ad8.zip | |
memory: change dirty getting API to take a size
Instead of each device knowing or guessing the guest page size, just pass the desired size of dirtied memory area. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'memory.h')
| -rw-r--r-- | memory.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/memory.h b/memory.h index fa45b99135..4cf8d2f27a 100644 --- a/memory.h +++ b/memory.h @@ -380,20 +380,21 @@ void memory_region_set_offset(MemoryRegion *mr, target_phys_addr_t offset); void memory_region_set_log(MemoryRegion *mr, bool log, unsigned client); /** - * memory_region_get_dirty: Check whether a page is dirty for a specified - * client. + * memory_region_get_dirty: Check whether a range of bytes is dirty + * for a specified client. * - * Checks whether a page has been written to since the last + * Checks whether a range of bytes has been written to since the last * call to memory_region_reset_dirty() with the same @client. Dirty logging * must be enabled. * * @mr: the memory region being queried. * @addr: the address (relative to the start of the region) being queried. + * @size: the size of the range being queried. * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or * %DIRTY_MEMORY_VGA. */ bool memory_region_get_dirty(MemoryRegion *mr, target_phys_addr_t addr, - unsigned client); + target_phys_addr_t size, unsigned client); /** * memory_region_set_dirty: Mark a range of bytes as dirty in a memory region. |