diff options
author | Rick Edgecombe <rick.p.edgecombe@intel.com> | 2024-07-19 00:12:15 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-23 16:28:55 +0300 |
commit | 9364789567f9b49279b138f7d124f0c6db1d6589 (patch) | |
tree | 85e8d7be94990b10f06d57a11d6a1fe133c443b4 | |
parent | dca6c88532322830d5d92486467fcc91b67a9ad8 (diff) | |
download | linux-9364789567f9b49279b138f7d124f0c6db1d6589.tar.xz |
KVM: x86: Add a VM type define for TDX
Add a VM type define for TDX.
Future changes will need to lay the ground work for TDX support by
making some behavior conditional on the VM being a TDX guest.
Signed-off-by: Rick Edgecombe <rick.p.edgecombe@intel.com>
Message-ID: <20240718211230.1492011-4-rick.p.edgecombe@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | arch/x86/include/uapi/asm/kvm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/uapi/asm/kvm.h b/arch/x86/include/uapi/asm/kvm.h index 88585c1de416..9e75da97bce0 100644 --- a/arch/x86/include/uapi/asm/kvm.h +++ b/arch/x86/include/uapi/asm/kvm.h @@ -925,5 +925,6 @@ struct kvm_hyperv_eventfd { #define KVM_X86_SEV_VM 2 #define KVM_X86_SEV_ES_VM 3 #define KVM_X86_SNP_VM 4 +#define KVM_X86_TDX_VM 5 #endif /* _ASM_X86_KVM_H */ |