]> git.proxmox.com Git - qemu.git/commitdiff
kvm: Don't walk memory_size == 0 slots in kvm_client_migration_log
authorAlex Williamson <alex.williamson@redhat.com>
Wed, 14 Jul 2010 19:36:49 +0000 (13:36 -0600)
committerMarcelo Tosatti <mtosatti@redhat.com>
Thu, 5 Aug 2010 12:57:35 +0000 (09:57 -0300)
If we've unregistered a memory area, we should avoid calling
qemu_get_ram_ptr() on the left over phys_offset cruft in the
slot array.  Now that we support removing ramblocks, the
phys_offset ram_addr_t can go away and cause a lookup fault
and abort.

Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
kvm-all.c

index 7635f2f8948725a0d1604cdf508d808f7041e6e1..736c5168622079a37ace62a19e70ba27925a7684 100644 (file)
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -274,6 +274,9 @@ static int kvm_set_migration_log(int enable)
     for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
         mem = &s->slots[i];
 
+        if (!mem->memory_size) {
+            continue;
+        }
         if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
             continue;
         }