diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-10-16 16:04:59 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-01-25 18:32:47 +0000 |
commit | fd4aa979033ca604ad829cf95055d4b5c5ed1063 (patch) | |
tree | defa55c0e1815076d229f941d4fe8ddf239b799f /hw/vhost.c | |
parent | 59abb06198ee9471e29c970f294eae80c0b39be1 (diff) | |
download | qemu-fd4aa979033ca604ad829cf95055d4b5c5ed1063.tar.gz qemu-fd4aa979033ca604ad829cf95055d4b5c5ed1063.tar.bz2 qemu-fd4aa979033ca604ad829cf95055d4b5c5ed1063.zip |
memory: change dirty setting APIs to take a size
Instead of each target 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 'hw/vhost.c')
-rw-r--r-- | hw/vhost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vhost.c b/hw/vhost.c index 4778521102..5ece659f4a 100644 --- a/hw/vhost.c +++ b/hw/vhost.c @@ -55,7 +55,7 @@ static void vhost_dev_sync_region(struct vhost_dev *dev, ram_addr_t ram_addr; bit -= 1; ram_addr = section->offset_within_region + bit * VHOST_LOG_PAGE; - memory_region_set_dirty(section->mr, ram_addr); + memory_region_set_dirty(section->mr, ram_addr, VHOST_LOG_PAGE); log &= ~(0x1ull << bit); } addr += VHOST_LOG_CHUNK; |