VirtualBox

Ignore:
Timestamp:
Jun 23, 2009 7:19:42 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
49009
Message:

SUP,*: API cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/MMPagePool.cpp

    r20680 r20864  
    6868     *        ring-0. Need to change the wasy we allocate it... */
    6969    AssertReleaseReturn(sizeof(*pVM->mm.s.pPagePoolR3) + sizeof(*pVM->mm.s.pPagePoolLowR3) < PAGE_SIZE, VERR_INTERNAL_ERROR);
    70     int rc = SUPPageAllocLockedEx(1, (void **)&pVM->mm.s.pPagePoolR3, NULL);
     70    int rc = SUPR3PageAllocLockedEx(1, (void **)&pVM->mm.s.pPagePoolR3, NULL);
    7171    if (RT_FAILURE(rc))
    7272        return rc;
     
    123123        {
    124124            int rc = SUPR3PageFreeEx(pSubPool->pvPages, pSubPool->cPages);
    125             AssertMsgRC(rc, ("SUPPageFree(%p) failed with rc=%Rrc\n", pSubPool->pvPages, rc));
     125            AssertMsgRC(rc, ("SUPR3PageFreeEx(%p) failed with rc=%Rrc\n", pSubPool->pvPages, rc));
    126126            pSubPool->pvPages = NULL;
    127127
     
    144144        while (pSubPool)
    145145        {
    146             int rc = SUPLowFree(pSubPool->pvPages, pSubPool->cPages);
    147             AssertMsgRC(rc, ("SUPPageFree(%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));
    148148            pSubPool->pvPages = NULL;
    149149
     
    258258    }
    259259    else
    260         rc = SUPLowAlloc(cPages, &pSub->pvPages, NULL, paPhysPages);
     260        rc = SUPR3LowAlloc(cPages, &pSub->pvPages, NULL, paPhysPages);
    261261    if (RT_SUCCESS(rc))
    262262    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette