Changeset 60899 in vbox for trunk/src/VBox
- Timestamp:
- May 9, 2016 3:44:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r60867 r60899 1070 1070 # endif 1071 1071 # ifdef VBOX_STRICT 1072 RTGCPHYS GCPhys2 ;1073 uint64_t fPageGst ;1072 RTGCPHYS GCPhys2 = RTGCPHYS_MAX; 1073 uint64_t fPageGst = UINT64_MAX; 1074 1074 if (!pVM->pgm.s.fNestedPaging) 1075 1075 { … … 1081 1081 rc = PGMShwGetPage(pVCpu, pvFault, &fPageShw, NULL); 1082 1082 AssertMsg((RT_SUCCESS(rc) && (fPageShw & X86_PTE_RW)) || pVM->cCpus > 1 /* new monitor can be installed/page table flushed between the trap exit and PGMTrap0eHandler */, 1083 ("rc=%Rrc fPageShw=%RX64 \n", rc, fPageShw));1083 ("rc=%Rrc fPageShw=%RX64 GCPhys2=%RGp fPageGst=%RX64\n", rc, fPageShw, GCPhys2, fPageGst)); /* Bogus? Can we end up mapping MMIO here for instance, or is that handled above already? */ 1084 1084 # endif /* VBOX_STRICT */ 1085 1085 STAM_STATS({ pVCpu->pgm.s.CTX_SUFF(pStatTrap0eAttribution) = &pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZTrap0eTime2OutOfSyncHndObs; });
Note:
See TracChangeset
for help on using the changeset viewer.