diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2010-01-27 22:07:21 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-09 16:56:13 -0600 |
| commit | 7b8f3b7834360d4777d80552db650b75dfc1010c (patch) | |
| tree | cb517ddabdce7cc37c53adce5fa6612b5c90bacf /exec.c | |
| parent | 46dbef6adefad2cc6fc6690faacb5c22dbd8f6f9 (diff) | |
| download | focaccia-qemu-7b8f3b7834360d4777d80552db650b75dfc1010c.tar.gz focaccia-qemu-7b8f3b7834360d4777d80552db650b75dfc1010c.zip | |
kvm: move kvm to use memory notifiers
remove direct kvm calls from exec.c, make kvm use memory notifiers framework instead. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/exec.c b/exec.c index 4599fb55c8..8389c54e7f 100644 --- a/exec.c +++ b/exec.c @@ -1988,12 +1988,6 @@ int cpu_physical_memory_set_dirty_tracking(int enable) { int ret = 0; in_migration = enable; - if (kvm_enabled()) { - ret = kvm_set_migration_log(enable); - } - if (ret < 0) { - return ret; - } ret = cpu_notify_migration_log(!!enable); return ret; } @@ -2006,14 +2000,8 @@ int cpu_physical_memory_get_dirty_tracking(void) int cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr, target_phys_addr_t end_addr) { - int ret = 0; + int ret; - if (kvm_enabled()) { - ret = kvm_physical_sync_dirty_bitmap(start_addr, end_addr); - } - if (ret < 0) { - return ret; - } ret = cpu_notify_sync_dirty_bitmap(start_addr, end_addr); return ret; } @@ -2426,9 +2414,6 @@ void cpu_register_physical_memory_offset(target_phys_addr_t start_addr, ram_addr_t orig_size = size; void *subpage; - if (kvm_enabled()) - kvm_set_phys_mem(start_addr, size, phys_offset); - cpu_notify_set_memory(start_addr, size, phys_offset); if (phys_offset == IO_MEM_UNASSIGNED) { |