aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kvm/vmx
AgeCommit message (Expand)AuthorFilesLines
2021-06-24KVM: nVMX: Handle split-lock #AC exceptions that happen in L2Gravatar Sean Christopherson 4-2/+11
2021-06-24KVM: x86: Print CPU of last attempted VM-entry when dumping VMCS/VMCBGravatar Jim Mattson 1-0/+2
2021-06-21KVM: nVMX: Dynamically compute max VMCS index for vmcs12Gravatar Sean Christopherson 3-8/+43
2021-06-21KVM: VMX: Skip #PF(RSVD) intercepts when emulating smaller maxphyaddrGravatar Jim Mattson 1-9/+14
2021-06-18KVM: VMX: Refuse to load kvm_intel if EPT and NX are disabledGravatar Sean Christopherson 1-0/+6
2021-06-17KVM: nVMX: Drop redundant checks on vmcs12 in EPTP switching emulationGravatar Sean Christopherson 1-3/+1
2021-06-17KVM: nVMX: WARN if subtly-impossible VMFUNC conditions occurGravatar Sean Christopherson 1-0/+10
2021-06-17KVM: x86: Drop pointless @reset_roots from kvm_init_mmu()Gravatar Sean Christopherson 1-1/+1
2021-06-17KVM: nVMX: Use fast PGD switch when emulating VMFUNC[EPTP_SWITCH]Gravatar Sean Christopherson 1-6/+13
2021-06-17KVM: nVMX: Free only guest_mode (L2) roots on INVVPID w/o EPTGravatar Sean Christopherson 1-4/+3
2021-06-17KVM: nVMX: Consolidate VM-Enter/VM-Exit TLB flush and MMU sync logicGravatar Sean Christopherson 1-64/+23
2021-06-17KVM: x86: Drop skip MMU sync and TLB flush params from "new PGD" helpersGravatar Sean Christopherson 1-5/+1
2021-06-17KVM: nVMX: Don't clobber nested MMU's A/D status on EPTP switchGravatar Sean Christopherson 1-7/+0
2021-06-17KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmapGravatar Sean Christopherson 1-1/+1
2021-06-17KVM: nVMX: Sync all PGDs on nested transition with shadow pagingGravatar Sean Christopherson 1-5/+12
2021-06-17KVM: nVMX: Request to sync eVMCS from VMCS12 after migrationGravatar Vitaly Kuznetsov 1-0/+6
2021-06-17KVM: nVMX: Reset eVMCS clean fields data from prepare_vmcs02()Gravatar Vitaly Kuznetsov 1-6/+13
2021-06-17KVM: nVMX: Force enlightened VMCS sync from nested_vmx_failValid()Gravatar Vitaly Kuznetsov 1-2/+6
2021-06-17KVM: nVMX: Ignore 'hv_clean_fields' data when eVMCS data is copied in vmx_get...Gravatar Vitaly Kuznetsov 1-18/+25
2021-06-17KVM: nVMX: Release enlightened VMCS on VMCLEARGravatar Vitaly Kuznetsov 1-0/+2
2021-06-17KVM: nVMX: Introduce 'EVMPTR_MAP_PENDING' post-migration stateGravatar Vitaly Kuznetsov 3-11/+9
2021-06-17KVM: nVMX: Make copy_vmcs12_to_enlightened()/copy_enlightened_to_vmcs12() ret...Gravatar Vitaly Kuznetsov 1-4/+4
2021-06-17KVM: nVMX: Release eVMCS when enlightened VMENTRY was disabledGravatar Vitaly Kuznetsov 1-1/+3
2021-06-17KVM: nVMX: Don't set 'dirty_vmcs12' flag on enlightened VMPTRLDGravatar Vitaly Kuznetsov 1-1/+0
2021-06-17KVM: nVMX: Use '-1' in 'hv_evmcs_vmptr' to indicate that eVMCS is not in useGravatar Vitaly Kuznetsov 5-28/+40
2021-06-17KVM: x86: avoid loading PDPTRs after migration when possibleGravatar Maxim Levitsky 1-1/+2
2021-06-17KVM: nVMX: delay loading of PDPTRs to KVM_REQ_GET_NESTED_STATE_PAGESGravatar Maxim Levitsky 1-5/+18
2021-06-17KVM: nVMX: Drop obsolete (and pointless) pdptrs_changed() checkGravatar Sean Christopherson 1-5/+3
2021-06-17KVM: x86: hyper-v: Move the remote TLB flush logic out of vmxGravatar Vineeth Pillai 2-112/+2
2021-06-17KVM: nVMX: nSVM: 'nested_run' should count guest-entry attempts that make it ...Gravatar Krish Sadhukhan 2-3/+12
2021-06-17KVM: x86: Drop "pre_" from enter/leave_smm() helpersGravatar Sean Christopherson 1-4/+4
2021-06-17KVM: x86: Drop vendor specific functions for APICv/AVIC enablementGravatar Vitaly Kuznetsov 1-1/+0
2021-06-17KVM: x86: Use common 'enable_apicv' variable for both APICv and AVICGravatar Vitaly Kuznetsov 2-2/+0
2021-06-17KVM: nVMX: Disable vmcs02 posted interrupts if vmcs12 PID isn't mappableGravatar Jim Mattson 1-1/+14
2021-06-17KVM: nVMX: Fail on MMIO completion for nested posted interruptsGravatar Jim Mattson 1-1/+5
2021-06-17KVM: nVMX: Add a return code to vmx_complete_nested_posted_interruptGravatar Jim Mattson 1-6/+6
2021-06-17KVM: nVMX: Enable nested TSC scalingGravatar Ilias Stamatis 1-6/+18
2021-06-17KVM: X86: Add vendor callbacks for writing the TSC multiplierGravatar Ilias Stamatis 3-18/+10
2021-06-17KVM: X86: Move write_l1_tsc_offset() logic to common code and rename itGravatar Ilias Stamatis 1-20/+3
2021-06-17KVM: X86: Add functions for retrieving L2 TSC fields from common codeGravatar Ilias Stamatis 2-0/+26
2021-06-17KVM: nVMX: Add a TSC multiplier field in VMCS12Gravatar Ilias Stamatis 2-1/+4
2021-06-17KVM: X86: Store L1's TSC scaling ratio in 'struct kvm_vcpu_arch'Gravatar Ilias Stamatis 1-2/+2
2021-06-10KVM: x86: Fix fall-through warnings for ClangGravatar Gustavo A. R. Silva 1-0/+1
2021-05-28KVM: X86: Use kvm_get_linear_rip() in single-step and #DB/#BP interceptionGravatar Yuan Yao 1-3/+2
2021-05-27KVM: VMX: update vcpu posted-interrupt descriptor when assigning deviceGravatar Marcelo Tosatti 3-0/+16
2021-05-24KVM: VMX: Drop unneeded CONFIG_X86_LOCAL_APIC checkGravatar Vitaly Kuznetsov 1-2/+1
2021-05-17Merge tag 'kvmarm-fixes-5.13-1' of git://git.kernel.org/pub/scm/linux/kernel/...Gravatar Paolo Bonzini 1-44/+11
2021-05-07KVM: X86: Expose bus lock debug exception to guestGravatar Paolo Bonzini 2-0/+6
2021-05-07KVM: x86: Tie Intel and AMD behavior for MSR_TSC_AUX to guest CPU modelGravatar Sean Christopherson 1-15/+0
2021-05-07KVM: x86: Move uret MSR slot management to common x86Gravatar Sean Christopherson 1-15/+4