summaryrefslogtreecommitdiffstats
path: root/accel/kvm/kvm-all.c
diff options
context:
space:
mode:
authorPeter Xu2021-05-06 18:05:45 +0200
committerPaolo Bonzini2021-05-26 14:49:45 +0200
commit29b7e8be76a142f6715e20bc13dc61ded1b8d2a7 (patch)
tree9e1fa65002ac836519e559162d62533d82e75cf0 /accel/kvm/kvm-all.c
parentKVM: Provide helper to sync dirty bitmap from slot to ramblock (diff)
downloadqemu-29b7e8be76a142f6715e20bc13dc61ded1b8d2a7.tar.gz
qemu-29b7e8be76a142f6715e20bc13dc61ded1b8d2a7.tar.xz
qemu-29b7e8be76a142f6715e20bc13dc61ded1b8d2a7.zip
KVM: Simplify dirty log sync in kvm_set_phys_mem
kvm_physical_sync_dirty_bitmap() on the whole section is inaccurate, because the section can be a superset of the memslot that we're working on. The result is that if the section covers multiple kvm memslots, we could be doing the synchronization for multiple times for each kvmslot in the section. With the two helpers that we just introduced, it's very easy to do it right now by calling the helpers. Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <20210506160549.130416-7-peterx@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/kvm/kvm-all.c')
-rw-r--r--accel/kvm/kvm-all.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
index 7031dd4250..0ba6d48120 100644
--- a/accel/kvm/kvm-all.c
+++ b/accel/kvm/kvm-all.c
@@ -1161,7 +1161,8 @@ static void kvm_set_phys_mem(KVMMemoryListener *kml,
goto out;
}
if (mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
- kvm_physical_sync_dirty_bitmap(kml, section);
+ kvm_slot_get_dirty_log(kvm_state, mem);
+ kvm_slot_sync_dirty_pages(mem);
}
/* unregister the slot */