aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kvm/svm/nested.c
AgeCommit message (Expand)AuthorFilesLines
2026-05-12KVM: nSVM: Never use L0's PAUSE loop exiting while L2 is runningSean Christopherson1-29/+14
2026-04-13Merge tag 'kvm-x86-nested-7.1' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-256/+359
2026-04-03KVM: nSVM: Fail emulation of VMRUN/VMLOAD/VMSAVE if mapping vmcb12 failsYosry Ahmed1-4/+2
2026-04-03KVM: SVM: Move RAX legality check to SVM insn interception handlersYosry Ahmed1-1/+5
2026-04-03KVM: x86: Suppress WARNs on nested_run_pending after userspace exitSean Christopherson1-4/+7
2026-04-03KVM: x86: Move nested_run_pending to kvm_vcpu_archYosry Ahmed1-9/+9
2026-03-13KVM: nSVM: Simplify error handling of nested_svm_copy_vmcb12_to_cache()Yosry Ahmed1-11/+12
2026-03-11KVM: SVM: check validity of VMCB controls when returning from SMMPaolo Bonzini1-2/+10
2026-03-04KVM: nSVM: Only copy SVM_MISC_ENABLE_NP from VMCB01's misc_ctlYosry Ahmed1-2/+10
2026-03-04KVM: nSVM: Sanitize INT/EVENTINJ fields when copying from vmcb12Yosry Ahmed1-4/+4
2026-03-04KVM: nSVM: Sanitize TLB_CONTROL field when copying from vmcb12Yosry Ahmed1-1/+1
2026-03-04KVM: nSVM: Use PAGE_MASK to drop lower bits of bitmap GPAs from vmcb12Yosry Ahmed1-4/+2
2026-03-04KVM: nSVM: Restrict mapping vmcb12 on nested VMRUNYosry Ahmed1-38/+51
2026-03-04KVM: nSVM: Cache all used fields from VMCB12Yosry Ahmed1-49/+67
2026-03-04KVM: SVM: Rename vmcb->virt_ext to vmcb->misc_ctl2Yosry Ahmed1-8/+8
2026-03-04KVM: SVM: Rename vmcb->nested_ctl to vmcb->misc_ctlSean Christopherson1-7/+7
2026-03-04KVM: nSVM: Capture svm->nested.ctl as vmcb12_ctrl when preparing vmcb02Sean Christopherson1-20/+19
2026-03-04KVM: nSVM: Move vmcb_ctrl_area_cached.bus_lock_rip to svm_nested_stateSean Christopherson1-4/+4
2026-03-04KVM: nSVM: Use vmcb12_is_intercept() in nested_sync_control_from_vmcb02()Yosry Ahmed1-1/+1
2026-03-04KVM: nSVM: Use intuitive local variables in nested_vmcb02_recalc_intercepts()Sean Christopherson1-18/+15
2026-03-04KVM: nSVM: Directly (re)calc vmcb02 intercepts from nested_vmcb02_prepare_con...Sean Christopherson1-1/+1
2026-03-04KVM: nSVM: WARN and abort vmcb02 intercepts recalc if vmcb02 isn't activeYosry Ahmed1-0/+3
2026-03-04KVM: SVM: Separate recalc_intercepts() into nested vs. non-nested partsSean Christopherson1-7/+2
2026-03-04KVM: nSVM: Always intercept VMMCALL when L2 is activeSean Christopherson1-7/+0
2026-03-04KVM: nSVM: Raise #UD if unhandled VMMCALL isn't intercepted by L1Kevin Cheng1-3/+1
2026-03-04KVM: SVM: Explicitly mark vmcb01 dirty after modifying VMCB interceptsSean Christopherson1-1/+3
2026-03-04KVM: nSVM: Add missing consistency check for EVENTINJYosry Ahmed1-0/+51
2026-03-04KVM: nSVM: Add missing consistency check for EFER, CR0, CR4, and CSYosry Ahmed1-0/+6
2026-03-04KVM: nSVM: Add missing consistency check for nCR3 validityYosry Ahmed1-0/+4
2026-03-04KVM: nSVM: Drop the non-architectural consistency check for NP_ENABLEYosry Ahmed1-4/+5
2026-03-04KVM: nSVM: Drop nested_vmcb_check_{save/control}() wrappersYosry Ahmed1-26/+10
2026-03-04KVM: nSVM: Clear tracking of L1->L2 NMI and soft IRQ on nested #VMEXITYosry Ahmed1-2/+4
2026-03-04KVM: nSVM: Clear EVENTINJ fields in vmcb12 on nested #VMEXITYosry Ahmed1-2/+4
2026-03-04KVM: nSVM: Clear GIF on nested #VMEXIT(INVALID)Yosry Ahmed1-0/+1
2026-03-04KVM: nSVM: Triple fault if restore host CR3 fails on nested #VMEXITYosry Ahmed1-7/+3
2026-03-04KVM: nSVM: Triple fault if mapping VMCB12 fails on nested #VMEXITYosry Ahmed1-6/+2
2026-03-04KVM: nSVM: Refactor writing vmcb12 on nested #VMEXIT as a helperYosry Ahmed1-33/+44
2026-03-04KVM: nSVM: Refactor checking LBRV enablement in vmcb12 into a helperYosry Ahmed1-4/+8
2026-03-04KVM: nSVM: Always inject a #GP if mapping VMCB12 fails on nested VMRUNYosry Ahmed1-4/+1
2026-03-04KVM: SVM: Add missing save/restore handling of LBR MSRsYosry Ahmed1-0/+5
2026-03-04KVM: SVM: Switch svm_copy_lbrs() to a macroYosry Ahmed1-4/+4
2026-03-04KVM: nSVM: Avoid clearing VMCB_LBR in vmcb12Yosry Ahmed1-2/+5
2026-03-04KVM: nSVM: Delay setting soft IRQ RIP tracking fields until vCPU runSean Christopherson1-9/+8
2026-03-04KVM: nSVM: Delay stuffing L2's current RIP into NextRIP until vCPU runYosry Ahmed1-17/+8
2026-03-04KVM: nSVM: Always use NextRIP as vmcb02's NextRIP after first L2 VMRUNYosry Ahmed1-10/+18
2026-03-02KVM: nSVM: Sync interrupt shadow to cached vmcb12 after VMRUN of L2Yosry Ahmed1-0/+1
2026-03-02KVM: nSVM: Ensure AVIC is inhibited when restoring a vCPU to guest modeYosry Ahmed1-0/+3
2026-03-02KVM: nSVM: Mark all of vmcb02 dirty when restoring nested stateYosry Ahmed1-0/+6
2026-03-02KVM: nSVM: Use vcpu->arch.cr2 when updating vmcb12 on nested #VMEXITYosry Ahmed1-1/+1
2026-02-21Convert 'alloc_obj' family to use the new default GFP_KERNEL argumentLinus Torvalds1-1/+1