- Timestamp:
- Sep 10, 2010 11:15:42 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r32384 r32389 1297 1297 1298 1298 /* Temporarily allow write access to the page table again. */ 1299 rc = PGMHandlerPhysicalPageTempOff(pVM, pPage->GCPhys, pPage->GCPhys );1299 rc = PGMHandlerPhysicalPageTempOff(pVM, pPage->GCPhys, pPage->GCPhys & PAGE_BASE_GC_MASK); 1300 1300 if (rc == VINF_SUCCESS) 1301 1301 { … … 1643 1643 1644 1644 /* First write protect the page again to catch all write accesses. (before checking for changes -> SMP) */ 1645 int rc = PGMHandlerPhysicalReset(pVM, pPage->GCPhys );1645 int rc = PGMHandlerPhysicalReset(pVM, pPage->GCPhys & PAGE_BASE_GC_MASK); 1646 1646 Assert(rc == VINF_SUCCESS); 1647 1647 pPage->fDirty = false;
Note:
See TracChangeset
for help on using the changeset viewer.