summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm/nested.c
AgeCommit message (Expand)AuthorFilesLines
2021-01-07KVM: nSVM: cancel KVM_REQ_GET_NESTED_STATE_PAGES on nested vmexitMaxim Levitsky1-0/+3
2021-01-07KVM: nSVM: mark vmcb as dirty when forcingly leaving the guest modeMaxim Levitsky1-0/+1
2021-01-07KVM: nSVM: correctly restore nested_run_pending on migrationMaxim Levitsky1-0/+4
2020-11-27KVM: nSVM: set fixed bits by handPaolo Bonzini1-4/+5
2020-11-15KVM: x86: Return bool instead of int for CR4 and SREGS validity checksSean Christopherson1-1/+1
2020-10-21KVM: nSVM: implement on demand allocation of the nested stateMaxim Levitsky1-0/+42
2020-09-28KVM: nSVM: delay MSR permission processing to first nested VM runPaolo Bonzini1-3/+18
2020-09-28KVM: nSVM: CR3 MBZ bits are only 63:52Krish Sadhukhan1-1/+1
2020-09-28KVM: SVM: Add new intercept word in vmcb_control_areaBabu Moger1-1/+2
2020-09-28KVM: SVM: Modify 64 bit intercept field to two 32 bit vectorsBabu Moger1-15/+10
2020-09-28KVM: SVM: Modify intercept_exceptions to generic interceptsBabu Moger1-6/+4
2020-09-28KVM: SVM: Change intercept_dr to generic interceptsBabu Moger1-5/+1
2020-09-28KVM: SVM: Change intercept_cr to generic interceptsBabu Moger1-9/+5
2020-09-28KVM: SVM: Introduce vmcb_(set_intercept/clr_intercept/_is_intercept)Babu Moger1-0/+12
2020-09-28KVM: nSVM: Remove unused fieldBabu Moger1-2/+0
2020-09-28KVM: nSVM: rename nested vmcb to vmcb12Maxim Levitsky1-113/+111
2020-09-28KVM: nSVM: Avoid freeing uninitialized pointers in svm_set_nested_state()Vitaly Kuznetsov1-5/+3
2020-09-22Merge branch 'x86-seves-for-paolo' of https://git.kernel.org/pub/scm/linux/ke...Paolo Bonzini1-14/+33
2020-09-12SVM: nSVM: setup nested msr permission bitmap on nested state loadMaxim Levitsky1-0/+3
2020-09-12SVM: nSVM: correctly restore GIF on vmexit from nesting after migrationMaxim Levitsky1-1/+3
2020-09-07KVM: SVM: nested: Don't allocate VMCB structures on stackJoerg Roedel1-14/+33
2020-07-30KVM: nSVM: Correctly set the shadow NPT root level in its MMU roleSean Christopherson1-1/+0
2020-07-10KVM: nSVM: remove nonsensical EXITINFO1 adjustment on nested NPFPaolo Bonzini1-7/+0
2020-07-10KVM: nSVM: use nested_svm_load_cr3() on guest->host switchVitaly Kuznetsov1-10/+7
2020-07-10KVM: nSVM: implement nested_svm_load_cr3() and use it for host->guest switchVitaly Kuznetsov1-9/+29
2020-07-10KVM: nSVM: move kvm_set_cr3() after nested_svm_uninit_mmu_context()Vitaly Kuznetsov1-6/+8
2020-07-10KVM: nSVM: introduce nested_svm_load_cr3()/nested_npt_enabled()Vitaly Kuznetsov1-2/+19
2020-07-10KVM: nSVM: prepare to handle errors from enter_svm_guest_mode()Vitaly Kuznetsov1-10/+16
2020-07-10KVM: nSVM: reset nested_run_pending upon nested_svm_vmrun_msrpm() failureVitaly Kuznetsov1-0/+2
2020-07-10KVM: nSVM: split kvm_init_shadow_npt_mmu() from kvm_init_shadow_mmu()Vitaly Kuznetsov1-1/+2
2020-07-08KVM: nSVM: Check that MBZ bits in CR3 and CR4 are not set on vmrun of nested ...Krish Sadhukhan1-2/+24
2020-07-08KVM: SVM: Add svm_ prefix to set/clr/is_intercept()Joerg Roedel1-1/+1
2020-07-08KVM: SVM: Add vmcb_ prefix to mark_*() functionsJoerg Roedel1-3/+3
2020-07-08KVM: nSVM: Check that DR6[63:32] and DR7[64:32] are not set on vmrun of neste...Krish Sadhukhan1-0/+3
2020-06-08KVM: SVM: fix calls to is_interceptPaolo Bonzini1-1/+1
2020-06-01KVM: x86: extend struct kvm_vcpu_pv_apf_data with token infoVitaly Kuznetsov1-1/+1
2020-06-01KVM: nSVM: implement KVM_GET_NESTED_STATE and KVM_SET_NESTED_STATEPaolo Bonzini1-0/+147
2020-06-01KVM: MMU: pass arbitrary CR0/CR4/EFER to kvm_init_shadow_mmuPaolo Bonzini1-1/+4
2020-06-01KVM: nSVM: leave guest mode when clearing EFER.SVMEPaolo Bonzini1-0/+16
2020-06-01KVM: nSVM: split nested_vmcb_check_controlsPaolo Bonzini1-9/+14
2020-06-01KVM: nSVM: remove HF_HIF_MASKPaolo Bonzini1-5/+0
2020-06-01KVM: nSVM: remove HF_VINTR_MASKPaolo Bonzini1-5/+1
2020-06-01KVM: nSVM: synthesize correct EXITINTINFO on vmexitPaolo Bonzini1-12/+47
2020-06-01KVM: SVM: preserve VGIF across VMCB switchPaolo Bonzini1-1/+5
2020-06-01KVM: nSVM: extract svm_set_gifPaolo Bonzini1-20/+2
2020-06-01KVM: nSVM: synchronize VMCB controls updated by the processor on every vmexitPaolo Bonzini1-24/+33
2020-06-01KVM: nSVM: save all control fields in svm->nestedPaolo Bonzini1-41/+32
2020-06-01KVM: nSVM: pass vmcb_control_area to copy_vmcb_control_areaPaolo Bonzini1-6/+4
2020-06-01KVM: nSVM: clean up tsc_offset updatePaolo Bonzini1-4/+5
2020-06-01KVM: nSVM: move MMU setup to nested_prepare_vmcb_controlPaolo Bonzini1-6/+6