Changeset 32036 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
- Timestamp:
- Aug 27, 2010 10:14:39 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r32035 r32036 421 421 AssertMsg(iHandyPage < RT_ELEMENTS(pVM->pgm.s.aHandyPages), ("%d\n", iHandyPage)); 422 422 Assert(pVM->pgm.s.aHandyPages[iHandyPage].HCPhysGCPhys != NIL_RTHCPHYS); 423 Assert(!(pVM->pgm.s.aHandyPages[iHandyPage].HCPhysGCPhys & ~X86_PTE_PAE_PG_MASK _FULL));423 Assert(!(pVM->pgm.s.aHandyPages[iHandyPage].HCPhysGCPhys & ~X86_PTE_PAE_PG_MASK)); 424 424 Assert(pVM->pgm.s.aHandyPages[iHandyPage].idPage != NIL_GMM_PAGEID); 425 425 Assert(pVM->pgm.s.aHandyPages[iHandyPage].idSharedPage == NIL_GMM_PAGEID); … … 1078 1078 if ( PGM_PAGE_GET_TYPE(pPage) < PGMPAGETYPE_ROM_SHADOW 1079 1079 || PGM_PAGE_GET_TYPE(pPage) > PGMPAGETYPE_ROM) 1080 pTlbe->GCPhys = GCPhys & X86_PTE_PAE_PG_MASK _FULL;1080 pTlbe->GCPhys = GCPhys & X86_PTE_PAE_PG_MASK; 1081 1081 else 1082 1082 pTlbe->GCPhys = NIL_RTGCPHYS; /* ROM: Problematic because of the two pages. :-/ */
Note:
See TracChangeset
for help on using the changeset viewer.