aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/kvm/lib
diff options
context:
space:
mode:
authorSean Christopherson <seanjc@google.com>2022-02-16 16:48:13 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2022-06-11 11:47:23 -0400
commit96a96e1ad06f8fc380a69954f5511e950a5eeb23 (patch)
tree1e8793bdadd0dca68a13c3a5501c86694dbbded4 /tools/testing/selftests/kvm/lib
parentKVM: selftests: Drop vcpu_get(), rename vcpu_find() => vcpu_exists() (diff)
downloadlinux-dev-96a96e1ad06f8fc380a69954f5511e950a5eeb23.tar.xz
linux-dev-96a96e1ad06f8fc380a69954f5511e950a5eeb23.zip
KVM: selftests: Remove vcpu_state() helper
Drop vcpu_state() now that all tests reference vcpu->run directly. Signed-off-by: Sean Christopherson <seanjc@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests/kvm/lib')
-rw-r--r--tools/testing/selftests/kvm/lib/kvm_util.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 60051258a3a3..ec4642f79fa3 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -1001,19 +1001,7 @@ void vm_mem_region_delete(struct kvm_vm *vm, uint32_t slot)
__vm_mem_region_delete(vm, memslot2region(vm, slot), true);
}
-/*
- * VCPU mmap Size
- *
- * Input Args: None
- *
- * Output Args: None
- *
- * Return:
- * Size of VCPU state
- *
- * Returns the size of the structure pointed to by the return value
- * of vcpu_state().
- */
+/* Returns the size of a vCPU's kvm_run structure. */
static int vcpu_mmap_sz(void)
{
int dev_fd, ret;
@@ -1394,11 +1382,6 @@ void vm_create_irqchip(struct kvm_vm *vm)
vm->has_irqchip = true;
}
-struct kvm_run *vcpu_state(struct kvm_vcpu *vcpu)
-{
- return vcpu->run;
-}
-
int _vcpu_run(struct kvm_vcpu *vcpu)
{