summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx/vmx.c
AgeCommit message (Expand)AuthorFilesLines
2019-03-28KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hostsSean Christopherson1-13/+0
2019-03-28KVM: SVM: Workaround errata#1096 (insn_len maybe zero on SMAP violation)Singh, Brijesh1-0/+6
2019-03-15Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-153/+35
2019-03-15kvm: vmx: fix formatting of a commentPaolo Bonzini1-5/+5
2019-02-20kvm: vmx: Add memcg accounting to KVM allocationsBen Gardon1-9/+18
2019-02-20KVM: x86: cleanup freeing of nested statePaolo Bonzini1-1/+0
2019-02-20KVM: x86: Sync the pending Posted-InterruptsLuwei Kang1-15/+11
2019-02-20KVM: VMX: Call vCPU-run asm sub-routine from C and remove clobberingSean Christopherson1-15/+4
2019-02-20KVM: VMX: Preserve callee-save registers in vCPU-run asm sub-routineSean Christopherson1-4/+1
2019-02-20KVM: VMX: Return VM-Fail from vCPU-run assembly via standard ABI regSean Christopherson1-4/+4
2019-02-20KVM: VMX: Pass @launched to the vCPU-run asm via standard ABI regsSean Christopherson1-7/+6
2019-02-20KVM: VMX: Rename ____vmx_vcpu_run() to __vmx_vcpu_run()Sean Christopherson1-1/+1
2019-02-20KVM: VMX: Fold __vmx_vcpu_run() back into vmx_vcpu_run()Sean Christopherson1-32/+27
2019-02-20KVM: VMX: Move vCPU-run code to a proper assembly routineSean Christopherson1-137/+1
2019-02-20KVM: VMX: Create a stack frame in vCPU-runSean Christopherson1-1/+1
2019-02-20KVM: VMX: Use #defines in place of immediates in VM-Enter inline asmSean Christopherson1-52/+61
2019-02-14kvm: vmx: Fix entry number check for add_atomic_switch_msr()Xiaoyao Li1-1/+2
2019-02-14KVM: x86: Recompute PID.ON when clearing PID.SNLuwei Kang1-15/+11
2019-02-12KVM: VMX: Use vcpu->arch.regs directly when saving/loading guest stateSean Christopherson1-24/+29
2019-02-12KVM: VMX: Don't save guest registers after VM-FailSean Christopherson1-12/+23
2019-02-12KVM: VMX: Invert the ordering of saving guest/host scratch reg at VM-EnterSean Christopherson1-5/+7
2019-02-12KVM: VMX: Pass "launched" directly to the vCPU-run asm blobSean Christopherson1-7/+6
2019-02-12KVM: VMX: Update VMCS.HOST_RSP via helper C functionSean Christopherson1-25/+26
2019-02-12KVM: VMX: Load/save guest CR2 via C code in __vmx_vcpu_run()Sean Christopherson1-11/+5
2019-02-12KVM: nVMX: Cache host_rsp on a per-VMCS basisSean Christopherson1-7/+6
2019-02-12KVM: VMX: Let the compiler save/load RDX during vCPU-runSean Christopherson1-4/+4
2019-02-12KVM: VMX: Manually load RDX in vCPU-run asm blobSean Christopherson1-1/+3
2019-02-12KVM: VMX: Save RSI to an unused output in the vCPU-run asm blobSean Christopherson1-1/+1
2019-02-12KVM: VMX: Modify only RSP when creating a placeholder for guest's RCXSean Christopherson1-1/+1
2019-02-12KVM: VMX: Zero out *all* general purpose registers after VM-ExitSean Christopherson1-3/+11
2019-02-12KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-runSean Christopherson1-1/+1
2019-01-30cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVMJosh Poimboeuf1-1/+2
2019-01-25KVM: x86: Mark expected switch fall-throughsGustavo A. R. Silva1-2/+2
2019-01-25KVM: VMX: Move vmx_vcpu_run()'s VM-Enter asm blob to a helper functionSean Christopherson1-66/+73
2019-01-25kvm: vmx: fix some -Wmissing-prototypes warningsYi Wang1-1/+1
2019-01-25KVM: VMX: Use the correct field var when clearing VM_ENTRY_LOAD_IA32_PERF_GLO...Sean Christopherson1-1/+1
2019-01-11KVM/VMX: Avoid return error when flush tlb successfully in the hv_remote_flus...Lan Tianyu1-1/+1
2019-01-11KVM: x86: Fix bit shifting in update_intel_pt_cfgGustavo A. R. Silva1-1/+1
2018-12-26Merge branch 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds1-1/+1
2018-12-21KVM: VMX: Move VM-Enter + VM-Exit handling to non-inline sub-routinesSean Christopherson1-12/+10
2018-12-21KVM: VMX: Explicitly reference RCX as the vmx_vcpu pointer in asm blobsSean Christopherson1-39/+47
2018-12-21KVM/VMX: Add hv tlb range flush supportLan Tianyu1-17/+44
2018-12-21KVM: x86: Disable Intel PT when VMXON in L1 guestLuwei Kang1-1/+2
2018-12-21KVM: x86: Set intercept for Intel PT MSRs read/writeChao Peng1-7/+26
2018-12-21KVM: x86: Implement Intel PT MSRs read/write emulationChao Peng1-0/+184
2018-12-21KVM: x86: Introduce a function to initialize the PT configurationLuwei Kang1-0/+73
2018-12-21KVM: x86: Add Intel PT context switch for each vcpuChao Peng1-0/+74
2018-12-21KVM: x86: Add Intel Processor Trace cpuid emulationChao Peng1-0/+6
2018-12-21KVM: x86: Add Intel PT virtualization work modeChao Peng1-2/+19
2018-12-21kvm: vmx: Allow guest read access to IA32_TSCJim Mattson1-0/+1