- Timestamp:
- Oct 19, 2021 11:34:50 PM (3 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r91849 r91852 435 435 int pgmHandlerPhysicalExDeregister(PVMCC pVM, PPGMPHYSHANDLER pPhysHandler) 436 436 { 437 LogFlow(("pgmHandlerPhysicalExDeregister: Removing Range %RGp-%RGp %s fRestoreAsRAM=%d\n",437 LogFlow(("pgmHandlerPhysicalExDeregister: Removing Range %RGp-%RGp %s\n", 438 438 pPhysHandler->Core.Key, pPhysHandler->Core.KeyLast, R3STRING(pPhysHandler->pszDesc))); 439 439 AssertReturn(pPhysHandler->Core.Key != NIL_RTGCPHYS, VERR_PGM_HANDLER_NOT_FOUND); -
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r91851 r91852 1762 1762 pgmR3PhysLinkRamRange(pVM, pNew, pPrev); 1763 1763 1764 #ifdef VBOX_WITH_NATIVE_NEM 1764 1765 /* 1765 1766 * Notify NEM now that it has been linked. … … 1769 1770 pgmR3PhysUnlinkRamRange2(pVM, pNew, pPrev); 1770 1771 return rc; 1772 #else 1773 return VINF_SUCCESS; 1774 #endif 1771 1775 } 1772 1776 … … 5688 5692 return VMSetError(pVM, VERR_PGM_PHYS_INVALID_PAGE_ID, RT_SRC_POS, "GCPhys=%RGp idPage=%#x", GCPhys, pPage); 5689 5693 } 5694 #ifdef VBOX_WITH_PGM_NEM_MODE 5690 5695 const RTHCPHYS HCPhysPrev = PGM_PAGE_GET_HCPHYS(pPage); 5696 #endif 5691 5697 5692 5698 /* update page count stats. */
Note:
See TracChangeset
for help on using the changeset viewer.