]> git.proxmox.com Git - qemu.git/commitdiff
vhost: fix dirty page handling
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 16 Mar 2011 10:09:09 +0000 (12:09 +0200)
committerJustin M. Forbes <jforbes@redhat.com>
Tue, 3 May 2011 13:28:58 +0000 (08:28 -0500)
vhost was passing a physical address to cpu_physical_memory_set_dirty,
which is wrong: we need to translate to ram address first.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Note: this lead to crashes during migration, so the patch
is needed on the stable branch too.

hw/vhost.c

index 38cc3b365b5356efad6610a0f42c73ecfca50019..6c194f0f810093daf6f0d3de85e82da3343bdbb5 100644 (file)
@@ -47,8 +47,10 @@ static void vhost_dev_sync_region(struct vhost_dev *dev,
         log = __sync_fetch_and_and(from, 0);
         while ((bit = sizeof(log) > sizeof(int) ?
                 ffsll(log) : ffs(log))) {
+            ram_addr_t ram_addr;
             bit -= 1;
-            cpu_physical_memory_set_dirty(addr + bit * VHOST_LOG_PAGE);
+            ram_addr = cpu_get_physical_page_desc(addr + bit * VHOST_LOG_PAGE);
+            cpu_physical_memory_set_dirty(ram_addr);
             log &= ~(0x1ull << bit);
         }
         addr += VHOST_LOG_CHUNK;