Changeset 96975 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 4, 2022 5:39:04 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/VMXAllTemplate.cpp.h
r96974 r96975 4422 4422 * @param pVCpu The cross context virtual CPU structure. 4423 4423 * @param pVmcsInfo The VMCS information structure. 4424 * @param fIsNestedGuest Flag whether the evaluation happens for a nest d guest.4424 * @param fIsNestedGuest Flag whether the evaluation happens for a nested guest. 4425 4425 * @param pfIntrState Where to store the VT-x guest-interruptibility state. 4426 4426 */ … … 5828 5828 /* If uExitVector is #PF, CR2 value will be updated from the VMCS if it's a guest #PF, see vmxHCExitXcptPF(). */ 5829 5829 STAM_COUNTER_INC(&VCPU_2_VMXSTATS(pVCpu).StatInjectReflect); 5830 vmxHCSetPendingEvent(pVCpu, VMX_ENTRY_INT_INFO_FROM_EXIT_IDT_INFO(uIdtVectorInfo), 0 /* cbInstr */, 5831 u32ErrCode,pVCpu->cpum.GstCtx.cr2);5830 vmxHCSetPendingEvent(pVCpu, VMX_ENTRY_INT_INFO_FROM_EXIT_IDT_INFO(uIdtVectorInfo), 0 /* cbInstr */, u32ErrCode, 5831 pVCpu->cpum.GstCtx.cr2); 5832 5832 5833 5833 Log4Func(("IDT: Pending vectoring event %#RX64 Err=%#RX32\n", VCPU_2_VMXSTATE(pVCpu).Event.u64IntInfo, … … 5844 5844 { 5845 5845 /* 5846 * Determin ga vectoring double #PF condition. Used later, when PGM evaluates the5846 * Determine a vectoring double #PF condition. Used later, when PGM evaluates the 5847 5847 * second #PF as a guest #PF (and not a shadow #PF) and needs to be converted into a #DF. 5848 5848 */ … … 10186 10186 10187 10187 /** 10188 * Nested-guest VM-exit handler for instructions that cause VM-exits uncond tionally10188 * Nested-guest VM-exit handler for instructions that cause VM-exits unconditionally 10189 10189 * and only provide the instruction length. 10190 10190 *
Note:
See TracChangeset
for help on using the changeset viewer.