VirtualBox

Changeset 16657 in vbox for trunk/src


Ignore:
Timestamp:
Feb 11, 2009 11:57:14 AM (16 years ago)
Author:
vboxsync
Message:

VBOX_WITH_PGMPOOL_PAGING_ONLY: Allocate all pages in low (below 4 GB) memory as 32 bits guests need a page table root in low memory.

File:
1 edited

Legend:

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

    r16418 r16657  
    471471        PPGMPOOLPAGE pPage = &pPool->aPages[i];
    472472
     473#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
     474        /* Allocate all pages in low (below 4 GB) memory as 32 bits guests need a page table root in low memory. */
     475        pPage->pvPageR3 = MMR3PageAllocLow(pVM);
     476#else
    473477        pPage->pvPageR3 = MMR3PageAlloc(pVM);
     478#endif
    474479        if (!pPage->pvPageR3)
    475480        {
Note: See TracChangeset for help on using the changeset viewer.

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