Changeset 46794 in vbox
- Timestamp:
- Jun 26, 2013 9:34:52 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r46790 r46794 3140 3140 3141 3141 /* Update CR2 of the guest. */ 3142 pCtx->cr2 = uFaultAddress; 3142 if (pCtx->cr2 != uFaultAddress) 3143 { 3144 pCtx->cr2 = uFaultAddress; 3145 pVCpu->hm.s.fContextUseFlags |= HM_CHANGED_GUEST_CR2; 3146 } 3143 3147 3144 3148 hmR0SvmSetPendingEvent(pVCpu, &Event, uFaultAddress); … … 4229 4233 int rc = PGMTrap0eHandler(pVCpu, u32ErrCode, CPUMCTX2CORE(pCtx), (RTGCPTR)uFaultAddress); 4230 4234 4231 Log2(("#PF rc=%Rrc\n", rc)); 4235 Log4(("#PF rc=%Rrc\n", rc)); 4236 4232 4237 if (rc == VINF_SUCCESS) 4233 4238 {
Note:
See TracChangeset
for help on using the changeset viewer.