diff options
| author | Sean Christopherson <[email protected]> | 2022-05-02 15:25:35 -0700 |
|---|---|---|
| committer | Paolo Bonzini <[email protected]> | 2022-06-11 10:14:46 -0400 |
| commit | d379749fdab68d0eee05e149a25f8ef45d2f19bc (patch) | |
| tree | ed0691c5e7dcc15d2403ed41da0cea52802a5e97 /tools/testing | |
| parent | ff624e57d8dfb6c66ff8118aca7bad61d75428f0 (diff) | |
KVM: selftests: Drop stale declarations from kvm_util_base.h
Drop declarations for allocate_kvm_dirty_log() and vm_create_device(),
which no longer have implementations.
Signed-off-by: Sean Christopherson <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
Diffstat (limited to 'tools/testing')
| -rw-r--r-- | tools/testing/selftests/kvm/include/kvm_util_base.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/testing/selftests/kvm/include/kvm_util_base.h b/tools/testing/selftests/kvm/include/kvm_util_base.h index 92cef0ffb19e..47b77ebda6a3 100644 --- a/tools/testing/selftests/kvm/include/kvm_util_base.h +++ b/tools/testing/selftests/kvm/include/kvm_util_base.h @@ -381,11 +381,6 @@ struct kvm_userspace_memory_region * kvm_userspace_memory_region_find(struct kvm_vm *vm, uint64_t start, uint64_t end); -struct kvm_dirty_log * -allocate_kvm_dirty_log(struct kvm_userspace_memory_region *region); - -int vm_create_device(struct kvm_vm *vm, struct kvm_create_device *cd); - #define sync_global_to_guest(vm, g) ({ \ typeof(g) *_p = addr_gva2hva(vm, (vm_vaddr_t)&(g)); \ memcpy(_p, &(g), sizeof(g)); \ |