Changeset 93619 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
- Timestamp:
- Feb 6, 2022 9:37:24 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r93554 r93619 2477 2477 const RTGCPHYS GCPhysPage = pPage->GCPhys & ~(RTGCPHYS)PAGE_OFFSET_MASK; 2478 2478 rc = PGMHandlerPhysicalRegister(pVM, GCPhysPage, GCPhysPage + PAGE_OFFSET_MASK, pPool->hAccessHandlerType, 2479 MMHyperCCToR3(pVM, pPage), MMHyperCCToR0(pVM, pPage), NIL_RTRCPTR, NIL_RTR3PTR /*pszDesc*/); 2479 pgmPoolConvertPageToR3(pPool, pPage), pgmPoolConvertPageToR0(pPool, pPage), 2480 NIL_RTRCPTR, NIL_RTR3PTR /*pszDesc*/); 2480 2481 /** @todo we should probably deal with out-of-memory conditions here, but for now increasing 2481 2482 * the heap size should suffice. */ … … 2555 2556 pNewHead->iMonitoredPrev = NIL_PGMPOOL_IDX; 2556 2557 rc = PGMHandlerPhysicalChangeUserArgs(pVM, pPage->GCPhys & ~(RTGCPHYS)PAGE_OFFSET_MASK, 2557 MMHyperCCToR3(pVM, pNewHead), MMHyperCCToR0(pVM, pNewHead)); 2558 pgmPoolConvertPageToR3(pPool, pNewHead), 2559 pgmPoolConvertPageToR0(pPool, pNewHead)); 2558 2560 2559 2561 AssertFatalRCSuccess(rc);
Note:
See TracChangeset
for help on using the changeset viewer.