| 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
| 2 | #ifndef _ASM_X86_KVM_PERF_H |
| 3 | #define _ASM_X86_KVM_PERF_H |
| 4 | |
| 5 | #include <asm/svm.h> |
| 6 | #include <asm/vmx.h> |
| 7 | #include <asm/kvm.h> |
| 8 | |
| 9 | #define DECODE_STR_LEN 20 |
| 10 | |
| 11 | #define VCPU_ID "vcpu_id" |
| 12 | |
| 13 | #define KVM_ENTRY_TRACE "kvm:kvm_entry" |
| 14 | #define KVM_EXIT_TRACE "kvm:kvm_exit" |
| 15 | #define KVM_EXIT_REASON "exit_reason" |
| 16 | |
| 17 | #endif /* _ASM_X86_KVM_PERF_H */ |