Changeset 33162 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 15, 2010 2:21:06 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 66696
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPool.cpp
r33008 r33162 191 191 */ 192 192 uint16_t cMaxPhysExts; 193 rc = CFGMR3QueryU16Def(pCfg, "MaxPhysExts", &cMaxPhysExts, RT_MAX(cMaxPages * 2, PGMPOOL_IDX_LAST));193 rc = CFGMR3QueryU16Def(pCfg, "MaxPhysExts", &cMaxPhysExts, RT_MAX(cMaxPages * 2, 2048 /* 2k max as this eat too much hyper heap */)); 194 194 AssertLogRelRCReturn(rc, rc); 195 195 AssertLogRelMsgReturn(cMaxPhysExts >= 16 && cMaxPages <= PGMPOOL_IDX_LAST,
Note:
See TracChangeset
for help on using the changeset viewer.