Changeset 95048 in vbox
- Timestamp:
- May 20, 2022 7:28:15 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151511
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/VMXAllTemplate.cpp.h
r94944 r95048 6856 6856 if (rc2 == VINF_SUCCESS) 6857 6857 rcStrict = VINF_SUCCESS; /* Restart instruction with modified guest register context. */ 6858 else if (rc2 == V INF_EM_RAW_GUEST_TRAP)6858 else if (rc2 == VERR_NOT_FOUND) 6859 6859 rcStrict = VERR_NOT_FOUND; /* Deliver the exception. */ 6860 6860 else … … 6865 6865 6866 6866 /* If the GCM #DE exception handler didn't succeed or wasn't needed, raise #DE. */ 6867 if (RT_FAILURE(rc ))6867 if (RT_FAILURE(rcStrict)) 6868 6868 { 6869 6869 vmxHCSetPendingEvent(pVCpu, VMX_ENTRY_INT_INFO_FROM_EXIT_INT_INFO(pVmxTransient->uExitIntInfo), -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r94944 r95048 8405 8405 if (rcStrict == VINF_SUCCESS) 8406 8406 rc = VINF_SUCCESS; /* Restart instruction with modified guest register context. */ 8407 else if (rcStrict == V INF_EM_RAW_GUEST_TRAP)8407 else if (rcStrict == VERR_NOT_FOUND) 8408 8408 rc = VERR_NOT_FOUND; /* Deliver the exception. */ 8409 8409 else
Note:
See TracChangeset
for help on using the changeset viewer.