Changeset 9341 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
- Timestamp:
- Jun 3, 2008 8:22:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r9212 r9341 600 600 uint64_t fPageGst; 601 601 PGMGstGetPage(pVM, pvFault, &fPageGst, &GCPhys); 602 Log(("Page out of sync: % peip=%08x PdeSrc.n.u1User=%d fPageGst=%08llx GCPhys=%VGp scan=%d\n",602 Log(("Page out of sync: %VGv eip=%08x PdeSrc.n.u1User=%d fPageGst=%08llx GCPhys=%VGp scan=%d\n", 603 603 pvFault, pRegFrame->eip, PdeSrc.n.u1User, fPageGst, GCPhys, CSAMDoesPageNeedScanning(pVM, (RTGCPTR)pRegFrame->eip))); 604 604 # endif /* LOG_ENABLED */ … … 677 677 */ 678 678 /** @todo not correct for pages that contain both code and data!! */ 679 Log2(("CSAMMarkPage % p; scanned=%d\n", pvFault, true));679 Log2(("CSAMMarkPage %VGv; scanned=%d\n", pvFault, true)); 680 680 CSAMMarkPage(pVM, pvFault, true); 681 681 } … … 775 775 */ 776 776 AssertMsg((fPageShw & ~(X86_PTE_A | X86_PTE_D | X86_PTE_AVL_MASK)) == (fPageGst & ~(X86_PTE_A | X86_PTE_D | X86_PTE_AVL_MASK)), 777 ("Page flags mismatch! pvFault=% pGCPhys=%VGp fPageShw=%08llx fPageGst=%08llx\n", pvFault, GCPhys, fPageShw, fPageGst));777 ("Page flags mismatch! pvFault=%VGv GCPhys=%VGp fPageShw=%08llx fPageGst=%08llx\n", pvFault, GCPhys, fPageShw, fPageGst)); 778 778 } 779 779 else
Note:
See TracChangeset
for help on using the changeset viewer.