aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kvm/svm/svm.c
AgeCommit message (Expand)AuthorFilesLines
2021-04-26KVM: x86: Rename GPR accessors to make mode-aware variants the defaultsSean Christopherson1-4/+4
2021-04-26KVM: SVM: Use default rAX size for INVLPGA emulationSean Christopherson1-3/+9
2021-04-26KVM: SVM: Truncate GPR value for DR and CR accesses in !64-bit modeSean Christopherson1-4/+4
2021-04-26KVM: SVM: Delay restoration of host MSR_TSC_AUX until return to userspaceSean Christopherson1-29/+24
2021-04-26KVM: SVM: Clear MSR_TSC_AUX[63:32] on writeSean Christopherson1-1/+11
2021-04-26KVM: SVM: Inject #GP on guest MSR_TSC_AUX accesses if RDTSCP unsupportedSean Christopherson1-0/+7
2021-04-21KVM: x86: Support KVM VMs sharing SEV contextNathan Tempelman1-0/+2
2021-04-20KVM: SVM: Define actual size of IOPM and MSRPM tablesKrish Sadhukhan1-10/+10
2021-04-20KVM: SVM: Enhance and clean up the vmcb tracking comment in pre_svm_run()Sean Christopherson1-5/+4
2021-04-20KVM: SVM: Drop vcpu_svm.vmcb_paSean Christopherson1-3/+9
2021-04-20KVM: SVM: Don't set current_vmcb->cpu when switching vmcbSean Christopherson1-8/+0
2021-04-19KVM: SVM: Make sure GHCB is mapped before updatingTom Lendacky1-1/+1
2021-04-17KVM: nSVM: improve SYSENTER emulation on AMDMaxim Levitsky1-34/+65
2021-03-15KVM: x86/mmu: Mark the PAE roots as decrypted for shadow pagingSean Christopherson1-3/+2
2021-03-15KVM: x86: Get active PCID only when writing a CR3 valueSean Christopherson1-3/+9
2021-03-15KVM: x86/mmu: Stop using software available bits to denote MMIO SPTEsSean Christopherson1-1/+1
2021-03-15KVM: nSVM: Optimize vmcb12 to vmcb02 save area copiesCathy Avery1-0/+1
2021-03-15KVM: SVM: Add support for Virtual SPEC_CTRLBabu Moger1-5/+21
2021-03-15KVM: nSVM: always use vmcb01 to for vmsave/vmload of guest stateMaxim Levitsky1-34/+36
2021-03-15KVM: SVM: move VMLOAD/VMSAVE to C codePaolo Bonzini1-0/+2
2021-03-15KVM: SVM: Skip intercepted PAUSE instructions after emulationSean Christopherson1-1/+1
2021-03-15KVM: SVM: Don't manually emulate RDPMC if nrips=0Sean Christopherson1-9/+1
2021-03-15KVM: x86: Move RDPMC emulation to common codeSean Christopherson1-4/+1
2021-03-15KVM: x86: Move trivial instruction-based exit handlers to common codeSean Christopherson1-77/+13
2021-03-15KVM: x86: Move XSETBV emulation to common codeSean Christopherson1-10/+1
2021-03-15KVM: nSVM: Add VMLOAD/VMSAVE helper to deduplicate codeSean Christopherson1-25/+12
2021-03-15KVM: nSVM: Add helper to synthesize nested VM-Exit without collateralSean Christopherson1-5/+1
2021-03-15KVM: SVM: Pass struct kvm_vcpu to exit handlers (and many, many other places)Paolo Bonzini1-278/+287
2021-03-15KVM: SVM: merge update_cr0_intercept into svm_set_cr0Paolo Bonzini1-32/+22
2021-03-15KVM: nSVM: rename functions and variables according to vmcbXY nomenclaturePaolo Bonzini1-7/+7
2021-03-15KVM: nSVM: Track the ASID generation of the vmcb vmrun through the vmcbCathy Avery1-14/+7
2021-03-15KVM: nSVM: Track the physical cpu of the vmcb vmrun through the vmcbCathy Avery1-8/+15
2021-03-15KVM: SVM: Use a separate vmcb for the nested L2 guestCathy Avery1-12/+37
2021-03-15KVM: SVM: Don't strip the C-bit from CR2 on #PF interceptionSean Christopherson1-1/+1
2021-03-05KVM: SVM: Connect 'npt' module param to KVM's internal 'npt_enabled'Sean Christopherson1-12/+13
2021-03-02KVM: SVM: Clear the CR4 register on resetBabu Moger1-0/+1
2021-02-25KVM: SVM: Fix nested VM-Exit on #GP interception handlingSean Christopherson1-3/+8
2021-02-18KVM: x86: Advertise INVPCID by defaultSean Christopherson1-3/+0
2021-02-18KVM: SVM: Intercept INVPCID when it's disabled to inject #UDSean Christopherson1-4/+4
2021-02-11KVM: SVM: Make symbol 'svm_gp_erratum_intercept' staticWei Yongjun1-1/+1
2021-02-09KVM: x86: move kvm_inject_gp up from kvm_set_dr to callersPaolo Bonzini1-8/+5
2021-02-09KVM: SVM: Remove an unnecessary forward declarationSean Christopherson1-2/+0
2021-02-04KVM: x86: SEV: Treat C-bit as legal GPA bit regardless of vCPU modeSean Christopherson1-1/+1
2021-02-04KVM: x86: move kvm_inject_gp up from kvm_set_xcr to callersPaolo Bonzini1-5/+2
2021-02-04KVM: SVM: Replace hard-coded value with #defineKrish Sadhukhan1-1/+1
2021-02-04KVM: SVM: use .prepare_guest_switch() to handle CPU register save/setupMichael Roth1-24/+52
2021-02-04KVM: SVM: remove uneeded fields from host_save_users_msrsMichael Roth1-4/+2
2021-02-04KVM: SVM: use vmsave/vmload for saving/restoring additional host stateMichael Roth1-26/+5
2021-02-04KVM: SVM: Use asm goto to handle unexpected #UD on SVM instructionsSean Christopherson1-15/+1
2021-02-04KVM: X86: prepend vmx/svm prefix to additional kvm_x86_ops functionsJason Baron1-10/+10