Changeset 78259 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- Apr 23, 2019 10:40:45 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r78258 r78259 7280 7280 if (RT_SUCCESS(rc)) 7281 7281 { 7282 if (u32Val & ( VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS 7283 | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI)) 7282 if (u32Val & (VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS | VMX_VMCS_GUEST_INT_STATE_BLOCK_STI)) 7284 7283 EMSetInhibitInterruptsPC(pVCpu, pVCpu->cpum.GstCtx.rip); 7285 7284 else if (VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS)) … … 10255 10254 */ 10256 10255 PVM pVM = pVCpu->CTX_SUFF(pVM); 10257 PVMXVMCSINFO pVmcsInfo = hmGetVmxActiveVmcsInfo(pVCpu); 10256 PCVMXVMCSINFO pVmcsInfo = pVmxTransient->pVmcsInfo; 10257 Assert(pVmcsInfo); 10258 10258 if ( !pVCpu->hm.s.vmx.u64GstMsrApicBase 10259 10259 && (pVmcsInfo->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_APIC_ACCESS)
Note:
See TracChangeset
for help on using the changeset viewer.