Changeset 19628 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 12, 2009 2:16:11 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r19329 r19628 577 577 PCPGMPOOLPAGE pPoolPagePd = pgmPoolGetPage(pPool, pShwPdpt->a[iPdpt].u & X86_PDPE_PG_MASK); 578 578 AssertFatal(pPoolPagePd); 579 AssertMsg(pPoolPagePd-> fLocked, (".idx=%d .type=%d\n", pPoolPagePd->idx, pPoolPagePd->enmKind));579 AssertMsg(pPoolPagePd->cLocked, (".idx=%d .type=%d\n", pPoolPagePd->idx, pPoolPagePd->enmKind)); 580 580 break; 581 581 } -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r19627 r19628 3864 3864 pPage->iAgePrev = NIL_PGMPOOL_IDX; 3865 3865 #endif 3866 pPage-> fLocked = false;3866 pPage->cLocked = 0; 3867 3867 } 3868 3868 pPool->aPages[pPool->cCurPages - 1].iNext = NIL_PGMPOOL_IDX;
Note:
See TracChangeset
for help on using the changeset viewer.