From: Marcelo Tosatti <[email protected]> And make kvm_unregister_memory_area static.
Signed-off-by: Marcelo Tosatti <[email protected]> Signed-off-by: Avi Kivity <[email protected]> diff --git a/qemu-kvm.c b/qemu-kvm.c index 5a048c6..ae6570a 100644 --- a/qemu-kvm.c +++ b/qemu-kvm.c @@ -639,8 +639,8 @@ void kvm_destroy_phys_mem(kvm_context_t kvm, unsigned long phys_start, free_slot(memory.slot); } -void kvm_unregister_memory_area(kvm_context_t kvm, uint64_t phys_addr, - unsigned long size) +static void kvm_unregister_memory_area(kvm_context_t kvm, uint64_t phys_addr, + unsigned long size) { int slot = get_container_slot(phys_addr, size); @@ -667,14 +667,6 @@ static int kvm_get_map(kvm_context_t kvm, int ioctl_num, int slot, void *buf) return 0; } -int kvm_get_dirty_pages(kvm_context_t kvm, unsigned long phys_addr, void *buf) -{ - int slot; - - slot = get_slot(phys_addr); - return kvm_get_map(kvm, KVM_GET_DIRTY_LOG, slot, buf); -} - int kvm_get_dirty_pages_range(kvm_context_t kvm, unsigned long phys_addr, unsigned long len, void *opaque, int (*cb)(unsigned long start, diff --git a/qemu-kvm.h b/qemu-kvm.h index 31aee77..645dde8 100644 --- a/qemu-kvm.h +++ b/qemu-kvm.h @@ -381,14 +381,11 @@ void *kvm_create_phys_mem(kvm_context_t, unsigned long phys_start, unsigned long len, int log, int writable); void kvm_destroy_phys_mem(kvm_context_t, unsigned long phys_start, unsigned long len); -void kvm_unregister_memory_area(kvm_context_t, uint64_t phys_start, - unsigned long len); int kvm_is_containing_region(kvm_context_t kvm, unsigned long phys_start, unsigned long size); int kvm_register_phys_mem(kvm_context_t kvm, unsigned long phys_start, void *userspace_addr, unsigned long len, int log); -int kvm_get_dirty_pages(kvm_context_t, unsigned long phys_addr, void *buf); int kvm_get_dirty_pages_range(kvm_context_t kvm, unsigned long phys_addr, unsigned long end_addr, void *opaque, int (*cb)(unsigned long start, -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
