Changeset 20773 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
- Timestamp:
- Jun 22, 2009 12:54:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r20764 r20773 1102 1102 LogFlow(("pgmPoolAccessHandler: pvFault=%RGv pPage=%p:{.idx=%d} GCPhysFault=%RGp\n", pvFault, pPage, pPage->idx, GCPhysFault)); 1103 1103 1104 pgmLock(pVM); 1105 1104 1106 /* 1105 1107 * Disassemble the faulting instruction. … … 1107 1109 PDISCPUSTATE pDis = &pVCpu->pgm.s.DisState; 1108 1110 int rc = EMInterpretDisasOne(pVM, pVCpu, pRegFrame, pDis, NULL); 1109 AssertRCReturn(rc, rc); 1110 1111 pgmLock(pVM); 1111 AssertReturnStmt(rc == VINF_SUCCESS, pgmUnlock(pVM), rc); 1112 1112 1113 1113 if (PHYS_PAGE_ADDRESS(GCPhysFault) != PHYS_PAGE_ADDRESS(pPage->GCPhys))
Note:
See TracChangeset
for help on using the changeset viewer.