summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx
Commit message (Expand)AuthorAgeFilesLines
* KVM: vmx: remove unused variablePaolo Bonzini2020-10-311-2/+0
* KVM: VMX: eVMCS: make evmcs_sanitize_exec_ctrls() work againVitaly Kuznetsov2020-10-313-5/+5
* Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2020-10-243-4/+4
|\
| * KVM: vmx: rename pi_init to avoid conflict with paridePaolo Bonzini2020-10-243-4/+4
* | Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2020-10-239-972/+1090
|\|
| * Merge branch 'kvm-fixes' into 'next'Paolo Bonzini2020-10-212-16/+26
| |\
| * | KVM: VMX: Intercept guest reserved CR4 bits to inject #GP faultSean Christopherson2020-10-211-5/+10
| * | KVM: x86: Move call to update_exception_bitmap() into VMX codeSean Christopherson2020-10-211-0/+3
| * | KVM: x86: allow kvm_x86_ops.set_efer to return an error valueMaxim Levitsky2020-10-212-3/+5
| * | KVM: VMX: Ignore userspace MSR filters for x2APICSean Christopherson2020-10-211-16/+29
| * | KVM: VMX: Fix x2APIC MSR intercept handling on !APICV platformsPeter Xu2020-10-191-2/+3
| * | KVM: VMX: vmx_uret_msrs_list[] can be statickernel test robot2020-09-291-1/+1
| * | KVM: x86: rename KVM_REQ_GET_VMCS12_PAGESPaolo Bonzini2020-09-281-4/+4
| * | KVM: x86: VMX: Prevent MSR passthrough when MSR access is deniedAlexander Graf2020-09-282-52/+181
| * | KVM: x86: Prepare MSR bitmaps for userspace tracked MSRsAaron Lewis2020-09-283-45/+42
| * | KVM: VMX: Rename vmx_uret_msr's "index" to "slot"Sean Christopherson2020-09-282-5/+5
| * | KVM: VMX: Rename "vmx_msr_index" to "vmx_uret_msrs_list"Sean Christopherson2020-09-281-8/+8
| * | KVM: VMX: Rename "vmx_set_guest_msr" to "vmx_set_guest_uret_msr"Sean Christopherson2020-09-281-3/+4
| * | KVM: VMX: Rename "find_msr_entry" to "vmx_find_uret_msr"Sean Christopherson2020-09-283-7/+7
| * | KVM: VMX: Add vmx_setup_uret_msr() to handle lookup and swapSean Christopherson2020-09-281-31/+18
| * | KVM: VMX: Move uret MSR lookup into update_transition_efer()Sean Christopherson2020-09-281-12/+19
| * | KVM: VMX: Check guest support for RDTSCP before processing MSR_TSC_AUXSean Christopherson2020-09-281-3/+5
| * | KVM: VMX: Rename "__find_msr_index" to "__vmx_find_uret_msr"Sean Christopherson2020-09-281-8/+8
| * | KVM: VMX: Rename vcpu_vmx's "guest_msrs_ready" to "guest_uret_msrs_loaded"Sean Christopherson2020-09-282-5/+5
| * | KVM: VMX: Rename vcpu_vmx's "save_nmsrs" to "nr_active_uret_msrs"Sean Christopherson2020-09-282-12/+12
| * | KVM: VMX: Rename vcpu_vmx's "nmsrs" to "nr_uret_msrs"Sean Christopherson2020-09-282-4/+4
| * | KVM: VMX: Rename the "shared_msr_entry" struct to "vmx_uret_msr"Sean Christopherson2020-09-283-35/+35
| * | KVM: VMX: Rename "vmx_find_msr_index" to "vmx_find_loadstore_msr_slot"Sean Christopherson2020-09-283-14/+14
| * | KVM: VMX: Prepend "MAX_" to MSR array size definesSean Christopherson2020-09-283-9/+9
| * | KVM: x86: Rename "shared_msrs" to "user_return_msrs"Sean Christopherson2020-09-281-6/+5
| * | KVM: nVMX: Read EXIT_QUAL and INTR_INFO only when needed for nested exitSean Christopherson2020-09-281-3/+2
| * | KVM: x86: Use common definition for kvm_nested_vmexit tracepointSean Christopherson2020-09-281-4/+1
| * | KVM: x86: Add intr/vectoring info and error code to kvm_exit tracepointSean Christopherson2020-09-281-2/+16
| * | KVM: VMX: Add a helper to test for a valid error code given an intr infoSean Christopherson2020-09-282-3/+8
| * | KVM: x86: Read guest RIP from within the kvm_nested_vmexit tracepointSean Christopherson2020-09-281-1/+1
| * | KVM: nVMX: WARN on attempt to switch the currently loaded VMCSSean Christopherson2020-09-281-1/+1
| * | KVM: nVMX: Drop redundant VMCS switch and free_nested() callSean Christopherson2020-09-281-2/+0
| * | KVM: nVMX: Ensure vmcs01 is the loaded VMCS when freeing nested stateSean Christopherson2020-09-281-0/+3
| * | KVM: nVMX: Move free_nested() below vmx_switch_vmcs()Sean Christopherson2020-09-281-38/+38
| * | KVM: nVMX: Explicitly check for valid guest state for !unrestricted guestSean Christopherson2020-09-283-7/+10
| * | KVM: nVMX: Reload vmcs01 if getting vmcs12's pages failsSean Christopherson2020-09-281-1/+3
| * | KVM: nVMX: Reset the segment cache when stuffing guest segsSean Christopherson2020-09-281-0/+2
| * | KVM: VMX: Rename ops.h to vmx_ops.hSean Christopherson2020-09-283-2/+1
| * | KVM: VMX: Extract posted interrupt support to separate filesXiaoyao Li2020-09-284-404/+437
| * | KVM: VMX: Add a helper and macros to reduce boilerplate for sec exec ctlsSean Christopherson2020-09-281-87/+64
| * | KVM: VMX: Rename RDTSCP secondary exec control name to insert "ENABLE"Sean Christopherson2020-09-283-8/+8
| * | KVM: VMX: Unconditionally clear CPUID.INVPCID if !CPUID.PCIDSean Christopherson2020-09-281-5/+11
| * | KVM: VMX: Rename vmx_*_supported() helpers to cpu_has_vmx_*()Sean Christopherson2020-09-282-11/+11
| * | KVM: VMX: Use "illegal GPA" helper for PT/RTIT output base checkSean Christopherson2020-09-281-1/+1
| * | KVM: x86: Move illegal GPA helper out of the MMU codeSean Christopherson2020-09-281-1/+1