Changeset 14681 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 27, 2008 2:08:28 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r14677 r14681 1610 1610 1611 1611 SHWPDE PdeDst = *pPdeDst; 1612 Assert (PdeDst.n.u1Present);1612 AssertMsg(PdeDst.n.u1Present, ("%p=%llx\n", pPdeDst, (uint64_t)PdeDst.u)); 1613 1613 PPGMPOOLPAGE pShwPage = pgmPoolGetPageByHCPhys(pVM, PdeDst.u & SHW_PDE_PG_MASK); 1614 1614 … … 1876 1876 PdeDst = pPDDst->a[iPDDst]; 1877 1877 # endif 1878 AssertMsg(PdeDst.n.u1Present, (" #llx\n", (uint64_t)PdeDst.u));1878 AssertMsg(PdeDst.n.u1Present, ("%#llx\n", (uint64_t)PdeDst.u)); 1879 1879 PPGMPOOLPAGE pShwPage = pgmPoolGetPageByHCPhys(pVM, PdeDst.u & SHW_PDE_PG_MASK); 1880 1880 PSHWPT pPTDst = (PSHWPT)PGMPOOL_PAGE_2_PTR(pVM, pShwPage);
Note:
See TracChangeset
for help on using the changeset viewer.