aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/kvm/lib/kvm_util.c
diff options
context:
space:
mode:
authorAndrew Jones <drjones@redhat.com>2020-11-04 22:23:48 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2020-11-08 06:03:36 -0500
commitf663132d1e09166db419afb9832d463e0a79f3d5 (patch)
tree0d6bb917209cc26da3e961e9190e13472597c040 /tools/testing/selftests/kvm/lib/kvm_util.c
parent92ab4b9a22cfea9b0d353e86024208040c10e807 (diff)
downloadkernel_replicant_linux-f663132d1e09166db419afb9832d463e0a79f3d5.tar.gz
kernel_replicant_linux-f663132d1e09166db419afb9832d463e0a79f3d5.tar.bz2
kernel_replicant_linux-f663132d1e09166db419afb9832d463e0a79f3d5.zip
KVM: selftests: Drop pointless vm_create wrapper
Signed-off-by: Andrew Jones <drjones@redhat.com> Message-Id: <20201104212357.171559-3-drjones@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests/kvm/lib/kvm_util.c')
-rw-r--r--tools/testing/selftests/kvm/lib/kvm_util.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 7669cb7c86e3..126c6727a6b0 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -180,7 +180,7 @@ _Static_assert(sizeof(vm_guest_mode_params)/sizeof(struct vm_guest_mode_params)
* descriptor to control the created VM is created with the permissions
* given by perm (e.g. O_RDWR).
*/
-struct kvm_vm *_vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
+struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
{
struct kvm_vm *vm;
@@ -271,11 +271,6 @@ struct kvm_vm *_vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
return vm;
}
-struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
-{
- return _vm_create(mode, phy_pages, perm);
-}
-
/*
* VM Restart
*