aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Christopherson <sean.j.christopherson@intel.com>2020-02-07 09:42:43 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2020-06-22 13:43:05 -0400
commit0f54d5d6bd6a713f696c33050353b81ba7971360 (patch)
treeb14fb49e30eaf34ad129d9fd5a6b0a7d45b8c2c2
parent592cb377db48620178575ca3cf6d9bbca8fb144e (diff)
downloadkvm-unit-tests-0f54d5d6bd6a713f696c33050353b81ba7971360.tar.gz
nVMX: Mark bit 39 of MSR_IA32_VMX_EPT_VPID_CAP as reserved
Remove bit 39, which is defined as reserved in Intel's SDM, from the set of allowed-1 bits in MSR_IA32_VMX_EPT_VPID_CAP. Fixes: 69c8d31 ("VMX: Validate capability MSRs") Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> Message-Id: <20200207174244.6590-4-sean.j.christopherson@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--x86/vmx.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/x86/vmx.c b/x86/vmx.c
index e18fbc1..b3d6dc6 100644
--- a/x86/vmx.c
+++ b/x86/vmx.c
@@ -1687,7 +1687,6 @@ static void test_vmx_caps(void)
EPT_CAP_INVEPT_SINGLE |
EPT_CAP_INVEPT_ALL |
VPID_CAP_INVVPID |
- (1ull << 39) |
VPID_CAP_INVVPID_ADDR |
VPID_CAP_INVVPID_CXTGLB |
VPID_CAP_INVVPID_ALL |