diff options
author | Gui Jianfeng <guijianfeng@cn.fujitsu.com> | 2010-06-03 20:51:39 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-08-01 03:39:26 -0400 |
commit | 518c8aee5ca74fc03273fc6b4893cf456d65d545 (patch) | |
tree | db11301916f1477651568ca16b268d4467e7bebd /arch/x86/kvm/vmx.c | |
parent | 7bee342a9e994cce7122cb187b4f3ded9d871165 (diff) |
KVM: VMX: Make sure single type invvpid is supported before issuing invvpid instruction
According to SDM, we need check whether single-context INVVPID type is supported
before issuing invvpid instruction.
Signed-off-by: Gui Jianfeng <guijianfeng@cn.fujitsu.com>
Reviewed-by: Sheng Yang <sheng@linux.intel.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r-- | arch/x86/kvm/vmx.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 2201e3816205..945265361885 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -360,6 +360,11 @@ static inline bool cpu_has_vmx_invept_global(void) | |||
360 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; | 360 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
361 | } | 361 | } |
362 | 362 | ||
363 | static inline bool cpu_has_vmx_invvpid_single(void) | ||
364 | { | ||
365 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; | ||
366 | } | ||
367 | |||
363 | static inline bool cpu_has_vmx_ept(void) | 368 | static inline bool cpu_has_vmx_ept(void) |
364 | { | 369 | { |
365 | return vmcs_config.cpu_based_2nd_exec_ctrl & | 370 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
@@ -504,7 +509,8 @@ static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx) | |||
504 | if (vmx->vpid == 0) | 509 | if (vmx->vpid == 0) |
505 | return; | 510 | return; |
506 | 511 | ||
507 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); | 512 | if (cpu_has_vmx_invvpid_single()) |
513 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); | ||
508 | } | 514 | } |
509 | 515 | ||
510 | static inline void ept_sync_global(void) | 516 | static inline void ept_sync_global(void) |