Changeset 20864 in vbox for trunk/src/VBox/VMM/MMPagePool.cpp
- Timestamp:
- Jun 23, 2009 7:19:42 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49009
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/MMPagePool.cpp
r20680 r20864 68 68 * ring-0. Need to change the wasy we allocate it... */ 69 69 AssertReleaseReturn(sizeof(*pVM->mm.s.pPagePoolR3) + sizeof(*pVM->mm.s.pPagePoolLowR3) < PAGE_SIZE, VERR_INTERNAL_ERROR); 70 int rc = SUP PageAllocLockedEx(1, (void **)&pVM->mm.s.pPagePoolR3, NULL);70 int rc = SUPR3PageAllocLockedEx(1, (void **)&pVM->mm.s.pPagePoolR3, NULL); 71 71 if (RT_FAILURE(rc)) 72 72 return rc; … … 123 123 { 124 124 int rc = SUPR3PageFreeEx(pSubPool->pvPages, pSubPool->cPages); 125 AssertMsgRC(rc, ("SUP PageFree(%p) failed with rc=%Rrc\n", pSubPool->pvPages, rc));125 AssertMsgRC(rc, ("SUPR3PageFreeEx(%p) failed with rc=%Rrc\n", pSubPool->pvPages, rc)); 126 126 pSubPool->pvPages = NULL; 127 127 … … 144 144 while (pSubPool) 145 145 { 146 int rc = SUP LowFree(pSubPool->pvPages, pSubPool->cPages);147 AssertMsgRC(rc, ("SUP PageFree(%p) failed with rc=%d\n", pSubPool->pvPages, rc));146 int rc = SUPR3LowFree(pSubPool->pvPages, pSubPool->cPages); 147 AssertMsgRC(rc, ("SUPR3LowFree(%p) failed with rc=%d\n", pSubPool->pvPages, rc)); 148 148 pSubPool->pvPages = NULL; 149 149 … … 258 258 } 259 259 else 260 rc = SUP LowAlloc(cPages, &pSub->pvPages, NULL, paPhysPages);260 rc = SUPR3LowAlloc(cPages, &pSub->pvPages, NULL, paPhysPages); 261 261 if (RT_SUCCESS(rc)) 262 262 {
Note:
See TracChangeset
for help on using the changeset viewer.