aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm/nested.c
Commit message (Expand)AuthorAgeFilesLines
* KVM: x86: allow L1 to not intercept triple faultMaxim Levitsky2022-11-171-0/+6
* KVM: x86: add kvm_leave_nestedMaxim Levitsky2022-11-171-3/+0
* KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in useMaxim Levitsky2022-11-171-0/+3
* KVM: x86: Rename inject_pending_events() to kvm_check_and_inject_events()Sean Christopherson2022-09-261-1/+1
* KVM: x86: Morph pending exceptions to pending VM-Exits at queue timeSean Christopherson2022-09-261-32/+13
* KVM: x86: Formalize blocking of nested pending exceptionsSean Christopherson2022-09-261-10/+16
* KVM: x86: Make kvm_queued_exception a properly named, visible structSean Christopherson2022-09-261-22/+25
* KVM: x86: Print guest pgd in kvm_nested_vmenter()Mingwei Zhang2022-09-261-0/+2
* KVM: x86: Update trace function for nested VM entry to support VMXMingwei Zhang2022-09-261-5/+7
* KVM: x86: Split kvm_is_valid_cr4() and export only the non-vendor bitsSean Christopherson2022-07-281-1/+2
* KVM: nSVM: Pull CS.Base from actual VMCB12 for soft int/ex re-injectionMaciej S. Szmigiero2022-07-281-4/+5
* KVM: x86: nSVM: always intercept x2apic msrsMaxim Levitsky2022-06-241-0/+5
* Merge branch 'kvm-5.20-early'Paolo Bonzini2022-06-091-5/+58
|\
| * KVM: x86: Introduce "struct kvm_caps" to track misc caps/settingsSean Christopherson2022-06-081-2/+2
| * KVM: nSVM: Transparently handle L1 -> L2 NMI re-injectionMaciej S. Szmigiero2022-06-081-0/+12
| * KVM: SVM: Re-inject INTn instead of retrying the insn on "failure"Sean Christopherson2022-06-081-4/+3
| * KVM: SVM: Re-inject INT3/INTO instead of retrying the instructionSean Christopherson2022-06-081-0/+26
| * KVM: nSVM: Sync next_rip field from vmcb12 to vmcb02Maciej S. Szmigiero2022-06-081-3/+19
* | KVM: x86: SVM: fix nested PAUSE filtering when L0 intercepts PAUSEPaolo Bonzini2022-06-091-18/+21
|/
* KVM: SVM: fix tsc scaling cache logicMaxim Levitsky2022-06-071-2/+2
* KVM: x86: Clean up and document nested #PF workaroundSean Christopherson2022-04-291-9/+9
* KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2Sean Christopherson2022-04-131-3/+0
* KVM: x86: SVM: allow AVIC to co-exist with a nested guest runningMaxim Levitsky2022-04-021-6/+10
* KVM: x86: nSVM: implement nested vGIFMaxim Levitsky2022-04-021-4/+11
* KVM: x86: nSVM: support PAUSE filtering when L0 doesn't intercept PAUSEMaxim Levitsky2022-04-021-0/+26
* KVM: x86: nSVM: implement nested LBR virtualizationMaxim Levitsky2022-04-021-2/+18
* KVM: x86: nSVM: correctly virtualize LBR msrs when L2 is runningMaxim Levitsky2022-04-021-0/+12
* kvm: x86: SVM: use vmcb* instead of svm->vmcb where it makes senseMaxim Levitsky2022-04-021-85/+94
* KVM: x86: nSVM: implement nested VMLOAD/VMSAVEMaxim Levitsky2022-04-021-7/+28
* KVM: x86/mmu: load new PGD after the shadow MMU is initializedPaolo Bonzini2022-02-251-3/+3
* KVM: nSVM: Implement Enlightened MSR-Bitmap featureVitaly Kuznetsov2022-02-101-7/+34
* KVM: nSVM: Track whether changes in L0 require MSR bitmap for L2 to be rebuiltVitaly Kuznetsov2022-02-101-0/+4
* KVM: x86: nSVM: fix potential NULL derefernce on nested migrationMaxim Levitsky2022-02-081-12/+14
* KVM: x86: Forcibly leave nested virt when SMM state is toggledSean Christopherson2022-01-261-4/+5
* KVM: X86: Remove mmu parameter from load_pdptrs()Lai Jiangshan2021-12-081-2/+2
* KVM: SVM: Remove references to VCPU_EXREG_CR3Lai Jiangshan2021-12-081-1/+0
* KVM: nSVM: introduce struct vmcb_ctrl_area_cachedEmanuele Giuseppe Esposito2021-12-081-17/+66
* KVM: nSVM: split out __nested_vmcb_check_controlsPaolo Bonzini2021-12-081-4/+12
* KVM: nSVM: use svm->nested.save to load vmcb12 registers and avoid TOC/TOU racesEmanuele Giuseppe Esposito2021-12-081-18/+6
* KVM: nSVM: use vmcb_save_area_cached in nested_vmcb_valid_sregs()Emanuele Giuseppe Esposito2021-12-081-4/+14
* KVM: nSVM: rename nested_load_control_from_vmcb12 in nested_copy_vmcb_control...Emanuele Giuseppe Esposito2021-12-081-40/+40
* KVM: nSVM: introduce svm->nested.save to cache save area before checksEmanuele Giuseppe Esposito2021-12-081-0/+23
* KVM: nSVM: move nested_vmcb_check_cr3_cr4 logic in nested_vmcb_valid_sregsEmanuele Giuseppe Esposito2021-12-081-22/+13
* nSVM: Check for reserved encodings of TLB_CONTROL in nested VMCBKrish Sadhukhan2021-10-011-0/+15
* KVM: x86: nSVM: implement nested TSC scalingMaxim Levitsky2021-10-011-2/+27
* KVM: x86: nSVM: don't copy pause related settingsMaxim Levitsky2021-09-301-8/+0
* KVM: x86: nSVM: don't copy virt_ext from vmcb12Maxim Levitsky2021-09-231-1/+0
* KVM: x86: SVM: call KVM_REQ_GET_NESTED_STATE_PAGES on exit from SMM modeMaxim Levitsky2021-09-221-3/+6
* Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2021-09-071-5/+0
|\
| * KVM: nSVM: remove useless kvm_clear_*_queuePaolo Bonzini2021-08-021-5/+0