Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/selftests/kvm/include/x86/ucall.h
50059 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
#ifndef SELFTEST_KVM_UCALL_H
3
#define SELFTEST_KVM_UCALL_H
4
5
#include "kvm_util.h"
6
7
#define UCALL_EXIT_REASON KVM_EXIT_IO
8
9
static inline void ucall_arch_init(struct kvm_vm *vm, vm_paddr_t mmio_gpa)
10
{
11
}
12
13
#endif
14
15