summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/kvm/include/x86_64
diff options
context:
space:
mode:
authorSean Christopherson <seanjc@google.com>2023-07-31 23:30:25 +0300
committerSean Christopherson <seanjc@google.com>2023-08-03 00:42:52 +0300
commitedb5b700f9f8a21e57aef14cf795fb958cc38628 (patch)
tree294cc6c9bad75445aa07d9fc30882776218b7b6b /tools/testing/selftests/kvm/include/x86_64
parentb35f4c73d389d3b04e5edf3d1fd041ed3070228b (diff)
downloadlinux-edb5b700f9f8a21e57aef14cf795fb958cc38628.tar.xz
KVM: selftests: Add #define of expected KVM exit reason for ucall
Define the expected architecture specific exit reason for a successful ucall so that common tests can assert that a ucall occurred without the test needing to implement arch specific code. Suggested-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Link: https://lore.kernel.org/r/20230731203026.1192091-3-seanjc@google.com Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'tools/testing/selftests/kvm/include/x86_64')
-rw-r--r--tools/testing/selftests/kvm/include/x86_64/ucall.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/kvm/include/x86_64/ucall.h b/tools/testing/selftests/kvm/include/x86_64/ucall.h
index 05cc69b0d550..06b244bd06ee 100644
--- a/tools/testing/selftests/kvm/include/x86_64/ucall.h
+++ b/tools/testing/selftests/kvm/include/x86_64/ucall.h
@@ -4,6 +4,8 @@
#include "kvm_util_base.h"
+#define UCALL_EXIT_REASON KVM_EXIT_IO
+
static inline void ucall_arch_init(struct kvm_vm *vm, vm_paddr_t mmio_gpa)
{
}