Changeset 32746 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 24, 2010 7:56:47 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r32551 r32746 1660 1660 void *pvShw = PGMPOOL_PAGE_2_PTR(pVM, pPage); 1661 1661 void *pvGst; 1662 rc = PGM_GCPHYS_2_PTR (pVM, pPage->GCPhys, &pvGst); AssertReleaseRC(rc);1662 rc = PGM_GCPHYS_2_PTR_EX(pVM, pPage->GCPhys, &pvGst); AssertReleaseRC(rc); 1663 1663 bool fFlush; 1664 1664 unsigned cChanges; … … 1741 1741 */ 1742 1742 void *pvGst; 1743 int rc = PGM_GCPHYS_2_PTR (pVM, pPage->GCPhys, &pvGst); AssertReleaseRC(rc);1743 int rc = PGM_GCPHYS_2_PTR_EX(pVM, pPage->GCPhys, &pvGst); AssertReleaseRC(rc); 1744 1744 memcpy(&pPool->aDirtyPages[idxFree].aPage[0], pvGst, (pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_PAE_PT) ? PAGE_SIZE : PAGE_SIZE/2); 1745 1745 #ifdef VBOX_STRICT
Note:
See TracChangeset
for help on using the changeset viewer.