Changeset 16887 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 18, 2009 10:42:49 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r16886 r16887 284 284 PX86PDPE pGstPdpe; 285 285 pGstPdpe = pgmGstGetPaePDPEPtr(&pVM->pgm.s, (iPdPt << X86_PDPT_SHIFT)); 286 AssertFatal(pGstPdpe); 287 GstPdpe = *pGstPdpe; 286 if (pGstPdpe) 287 GstPdpe = *pGstPdpe; 288 else 289 GstPdpe.u = X86_PDPE_P; /* rw/us are reserved for PAE pdpte's; accessed bit causes invalid VT-x guest state errors */ 288 290 } 289 291 int rc = pgmShwSyncPaePDPtr(pVM, (iPdPt << X86_PDPT_SHIFT), &GstPdpe, &pShwPaePd);
Note:
See TracChangeset
for help on using the changeset viewer.