Displaying 1 result from an estimated 1 matches for "was_written".
Did you mean:
last_written
2012 Jul 23
2
[PATCH V2] qemu-xen-traditionnal, Fix dirty logging during migration.
...fv.c
@@ -174,7 +174,8 @@ uint8_t *qemu_map_cache(target_phys_addr_t phys_addr, uint8_t lock)
return last_address_vaddr + address_offset;
}
-void qemu_invalidate_entry(uint8_t *buffer)
+void qemu_invalidate_entry(uint8_t *buffer, target_phys_addr_t access_len,
+ int was_written)
{
struct map_cache *entry = NULL, *pentry = NULL;
struct map_cache_rev *reventry;
@@ -210,6 +211,17 @@ void qemu_invalidate_entry(uint8_t *buffer)
fprintf(logfile, "Trying to unmap address %p that is not in the mapcache!\n", buffer);
return;
}
+ if (x...