diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2011-04-06 22:25:38 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2011-04-06 22:28:40 +0300 |
commit | 0fd542fb7d13ddf12f897bb27c5950f31638b1df (patch) | |
tree | 3a5ea98b312b60c63440b4c3b0d039481746188d /kvm-all.c | |
parent | afe3ef1d01dd767b6824c0580ecb92f6a27b75cc (diff) |
cpu: add set_memory flag to request dirty logging
Pass the flag to all cpu notifiers, doing
nothing at this point. Will be used by
follow-up patches.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'kvm-all.c')
-rw-r--r-- | kvm-all.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -625,7 +625,8 @@ static void kvm_set_phys_mem(target_phys_addr_t start_addr, ram_addr_t size, static void kvm_client_set_memory(struct CPUPhysMemoryClient *client, target_phys_addr_t start_addr, - ram_addr_t size, ram_addr_t phys_offset) + ram_addr_t size, ram_addr_t phys_offset, + bool log_dirty) { kvm_set_phys_mem(start_addr, size, phys_offset); } |