- Timestamp:
- Jun 12, 2009 2:48:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r20518 r20519 812 812 RTGCPHYS GCPhys; 813 813 uint64_t fPageGst; 814 rc = PGMGstGetPage(pVCpu, pvFault, &fPageGst, &GCPhys); 815 AssertMsg(RT_SUCCESS(rc) && (fPageGst & X86_PTE_RW), ("rc=%d fPageGst=%RX64\n")); 816 LogFlow(("Obsolete physical monitor page out of sync %RGv - phys %RGp flags=%08llx\n", pvFault, GCPhys, (uint64_t)fPageGst)); 817 814 if (!HWACCMIsNestedPagingActive(pVM)) 815 { 816 rc = PGMGstGetPage(pVCpu, pvFault, &fPageGst, &GCPhys); 817 AssertMsg(RT_SUCCESS(rc) && (fPageGst & X86_PTE_RW), ("rc=%d fPageGst=%RX64\n")); 818 LogFlow(("Obsolete physical monitor page out of sync %RGv - phys %RGp flags=%08llx\n", pvFault, GCPhys, (uint64_t)fPageGst)); 819 } 818 820 uint64_t fPageShw; 819 821 rc = PGMShwGetPage(pVCpu, pvFault, &fPageShw, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.