- Timestamp:
- Sep 16, 2009 11:25:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22890 r23060 1413 1413 { 1414 1414 unsigned cErrors = 0; 1415 int LastRc; 1416 unsigned LastPTE; 1417 RTHCPHYS LastHCPhys; 1418 1415 1419 #ifdef VBOX_STRICT 1416 1420 for (unsigned i = 0; i < RT_MIN(RT_ELEMENTS(pShwPT->a), pPage->iFirstPresent); i++) … … 1428 1432 RTHCPHYS HCPhysPT = -1; 1429 1433 Log(("rc=%d idx=%d guest %RX64 shw=%RX64 vs %RHp\n", rc, i, pGstPT->a[i].u, pShwPT->a[i].u, HCPhys)); 1434 LastPTE = i; 1435 LastRc = rc; 1436 LastHCPhys = HCPhys; 1430 1437 cErrors++; 1431 1438 … … 1455 1462 } 1456 1463 } 1457 Assert (!cErrors);1464 AssertMsg(!cErrors, ("cErrors=%d: last rc=%d idx=%d guest %RX64 shw=%RX64 vs %RHp\n", cErrors, LastRc, LastPTE, pGstPT->a[LastPTE].u, pShwPT->a[LastPTE].u, LastHCPhys)); 1458 1465 } 1459 1466 # endif /* VBOX_STRICT */
Note:
See TracChangeset
for help on using the changeset viewer.