- Timestamp:
- Oct 27, 2010 1:58:18 PM (14 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPool.cpp
r33343 r33512 661 661 for (unsigned i = 0; i < RT_ELEMENTS(pShwPD->a); i++) 662 662 { 663 Assert((pShwPD->a[i].u & (X86_PDE_PAE_MBZ_MASK_NX | UINT64_C(0x7ff0000000000200))) == 0);664 663 if ( pShwPD->a[i].n.u1Present 665 664 && pShwPD->a[i].b.u1Size) -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r32977 r33512 4455 4455 for (unsigned i = 0; i < RT_ELEMENTS(pShwPD->a); i++) 4456 4456 { 4457 Assert((pShwPD->a[i].u & (X86_PDE_PAE_MBZ_MASK_NX | UINT64_C(0x7ff0000000000200))) == 0);4458 4457 if ( pShwPD->a[i].n.u1Present 4459 4458 && !(pShwPD->a[i].u & PGM_PDFLAGS_MAPPING)) … … 4469 4468 #endif 4470 4469 { 4470 Assert((pShwPD->a[i].u & (X86_PDE_PAE_MBZ_MASK_NX | UINT64_C(0x7ff0000000000200))) == 0); 4471 4471 PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPD->a[i].u & X86_PDE_PAE_PG_MASK); 4472 4472 if (pSubPage)
Note:
See TracChangeset
for help on using the changeset viewer.