Changeset 26274 in vbox
- Timestamp:
- Feb 5, 2010 4:29:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r26271 r26274 227 227 PVM pVM = pPool->CTX_SUFF(pVM); 228 228 229 LogFlow(("pgmPoolMonitorChainChanging: %RGv phys=%RGp cbWrite=%d\n", (RTGCPTR) pvAddress, GCPhysFault, cbWrite));229 LogFlow(("pgmPoolMonitorChainChanging: %RGv phys=%RGp cbWrite=%d\n", (RTGCPTR)(CTXTYPE(RTGCPTR, uintptr_t, RTGCPTR))pvAddress, GCPhysFault, cbWrite)); 230 230 231 231 for (;;) … … 1397 1397 if (pShwPT->a[i].n.u1Present) 1398 1398 { 1399 RTHCPHYS HCPhys = -1;1399 RTHCPHYS HCPhys = NIL_RTHCPHYS; 1400 1400 int rc = PGMPhysGCPhys2HCPhys(pPool->CTX_SUFF(pVM), pGstPT->a[i].u & X86_PTE_PAE_PG_MASK, &HCPhys); 1401 1401 if ( rc != VINF_SUCCESS 1402 1402 || (pShwPT->a[i].u & X86_PTE_PAE_PG_MASK) != HCPhys) 1403 1403 { 1404 RTHCPHYS HCPhysPT = -1;1405 1404 Log(("rc=%d idx=%d guest %RX64 shw=%RX64 vs %RHp\n", rc, i, pGstPT->a[i].u, pShwPT->a[i].u, HCPhys)); 1406 1405 LastPTE = i; … … 1409 1408 cErrors++; 1410 1409 1410 RTHCPHYS HCPhysPT = NIL_RTHCPHYS; 1411 1411 rc = PGMPhysGCPhys2HCPhys(pPool->CTX_SUFF(pVM), pPage->GCPhys, &HCPhysPT); 1412 1412 AssertRC(rc); … … 1480 1480 { 1481 1481 #ifdef VBOX_STRICT 1482 RTHCPHYS HCPhys = -1;1482 RTHCPHYS HCPhys = NIL_RTGCPHYS; 1483 1483 int rc = PGMPhysGCPhys2HCPhys(pPool->CTX_SUFF(pVM), pGstPT->a[i].u & X86_PTE_PAE_PG_MASK, &HCPhys); 1484 1484 AssertMsg(rc == VINF_SUCCESS && (pShwPT->a[i].u & X86_PTE_PAE_PG_MASK) == HCPhys, ("rc=%d guest %RX64 old %RX64 shw=%RX64 vs %RHp\n", rc, pGstPT->a[i].u, pOldGstPT->a[i].u, pShwPT->a[i].u, HCPhys));
Note:
See TracChangeset
for help on using the changeset viewer.