Changeset 14392 in vbox
- Timestamp:
- Nov 20, 2008 10:23:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r14364 r14392 148 148 PX86PDPAE pPDDst = pgmShwGetPaePDPtr(&pVM->pgm.s, pvFault); 149 149 150 # if PGM_GST_TYPE == PGM_TYPE_PAE151 150 /* Did we mark the PDPT as not present in SyncCR3? */ 152 151 unsigned iPdpt = (pvFault >> SHW_PDPT_SHIFT) & SHW_PDPT_MASK; … … 154 153 if (!pPdptDst->a[iPdpt].n.u1Present) 155 154 pPdptDst->a[iPdpt].n.u1Present = 1; 156 # endif /* GST PAE */157 155 158 156 # elif PGM_SHW_TYPE == PGM_TYPE_AMD64 … … 1121 1119 } 1122 1120 if (!(pPdptDst->a[iPdpt].u & PGM_PLXFLAGS_MAPPING)) 1123 1121 pPdptDst->a[iPdpt].n.u1Present = 0; 1124 1122 PGM_INVL_GUEST_TLBS(); 1125 1123 } … … 3220 3218 } 3221 3219 if (!(pPdptDst->a[iPdpt].u & PGM_PLXFLAGS_MAPPING)) 3222 3220 pPdptDst->a[iPdpt].n.u1Present = 0; 3223 3221 continue; 3224 3222 }
Note:
See TracChangeset
for help on using the changeset viewer.