Changeset 20064 in vbox
- Timestamp:
- May 27, 2009 11:13:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r20061 r20064 1683 1683 # endif 1684 1684 SHWPDE PdeDst = *pPdeDst; 1685 AssertMsg(PdeDst.n.u1Present, ("%p=%llx\n", pPdeDst, (uint64_t)PdeDst.u)); 1685 if (!PdeDst.n.u1Present) 1686 { 1687 AssertMsg(pVM->cCPUs > 1, ("%Unexpected missing PDE p=%llx\n", pPdeDst, (uint64_t)PdeDst.u)); 1688 return VINF_SUCCESS; /* force the instruction to be executed again. */ 1689 } 1690 1686 1691 PPGMPOOLPAGE pShwPage = pgmPoolGetPage(pPool, PdeDst.u & SHW_PDE_PG_MASK); 1687 1692
Note:
See TracChangeset
for help on using the changeset viewer.