aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/vmxfeatures.h
diff options
context:
space:
mode:
authorXiaoyao Li <xiaoyao.li@intel.com>2020-02-16 18:48:57 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2020-02-21 18:05:19 +0100
commit624e18f92f2ec449c2b3a6d388c0dccc45e4c4d7 (patch)
treef9cf8121fa5d679312999fc013f4256f2753aa74 /arch/x86/include/asm/vmxfeatures.h
parentKVM: nVMX: Hold KVM's srcu lock when syncing vmcs12->shadow (diff)
downloadlinux-dev-624e18f92f2ec449c2b3a6d388c0dccc45e4c4d7.tar.xz
linux-dev-624e18f92f2ec449c2b3a6d388c0dccc45e4c4d7.zip
KVM: VMX: Add VMX_FEATURE_USR_WAIT_PAUSE
Commit 159348784ff0 ("x86/vmx: Introduce VMX_FEATURES_*") missed bit 26 (enable user wait and pause) of Secondary Processor-based VM-Execution Controls. Add VMX_FEATURE_USR_WAIT_PAUSE flag so that it shows up in /proc/cpuinfo, and use it to define SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE to make them uniform. Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com> Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '')
-rw-r--r--arch/x86/include/asm/vmxfeatures.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/vmxfeatures.h b/arch/x86/include/asm/vmxfeatures.h
index a50e4a0de315..9915990fd8cf 100644
--- a/arch/x86/include/asm/vmxfeatures.h
+++ b/arch/x86/include/asm/vmxfeatures.h
@@ -81,6 +81,7 @@
#define VMX_FEATURE_MODE_BASED_EPT_EXEC ( 2*32+ 22) /* "ept_mode_based_exec" Enable separate EPT EXEC bits for supervisor vs. user */
#define VMX_FEATURE_PT_USE_GPA ( 2*32+ 24) /* "" Processor Trace logs GPAs */
#define VMX_FEATURE_TSC_SCALING ( 2*32+ 25) /* Scale hardware TSC when read in guest */
+#define VMX_FEATURE_USR_WAIT_PAUSE ( 2*32+ 26) /* Enable TPAUSE, UMONITOR, UMWAIT in guest */
#define VMX_FEATURE_ENCLV_EXITING ( 2*32+ 28) /* "" VM-Exit on ENCLV (leaf dependent) */
#endif /* _ASM_X86_VMXFEATURES_H */