Changeset 20893 in vbox
- Timestamp:
- Jun 24, 2009 1:43:50 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r19454 r20893 1553 1553 /* 1554 1554 * The memory is bound to the VM allocating it, so we have to count 1555 * the free pages carefully as well as making sure we set brand it1556 * withour VM handle.1555 * the free pages carefully as well as making sure we brand them with 1556 * our VM handle. 1557 1557 * 1558 1558 * Note! We will leave the mutex while doing the allocation, … … 1698 1698 */ 1699 1699 PGMMCHUNKFREESET pSet = &pGMM->Private; 1700 #if 0 /** @todo this is broken, at least on windows... */ 1700 1701 if (pSet->cPages < cPages) 1701 1702 return VERR_GMM_SEED_ME; 1703 #endif 1702 1704 if (pGMM->fBoundMemoryMode) 1703 1705 { … … 1715 1717 return VERR_GMM_SEED_ME; 1716 1718 } 1719 else if (pSet->cPages < cPages) /* see #if 0 */ 1720 return VERR_GMM_SEED_ME; 1717 1721 1718 1722 /*
Note:
See TracChangeset
for help on using the changeset viewer.

