]> git.proxmox.com Git - qemu.git/commit
kvm: fix incorrect length in a loop over kvm dirty pages map
authorAlexey Kardashevskiy <aik@ozlabs.ru>
Mon, 19 Nov 2012 15:40:47 +0000 (15:40 +0000)
committerAlexander Graf <agraf@suse.de>
Mon, 26 Nov 2012 18:53:26 +0000 (19:53 +0100)
commit752ced0488806830f18f96b60ae6f3d1fadfd089
treee9c81f5a9780f4a207009a7fafa1d2b105c6fc2d
parentf0cc4aa8450376ca2aee3ebb09db71f9f2ff333b
kvm: fix incorrect length in a loop over kvm dirty pages map

QEMU allocates a map enough for 4k pages. However the system page size
can be 64K (for example on POWER) and the host kernel uses only a small
part of it as one big stores a dirty flag for 16 pages 4K each,
the hpratio variable stores this ratio and
the kvm_get_dirty_pages_log_range function handles it correctly.

However kvm_get_dirty_pages_log_range still goes beyond the data
provided by the host kernel which is not correct. It does not cause
errors at the moment as the whole bitmap is zeroed before doing KVM ioctl.

The patch reduces number of iterations over the map.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Alexander Graf <agraf@suse.de>
kvm-all.c