Changeset 65902 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 28, 2017 3:00:12 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113694
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r65900 r65902 2549 2549 int rc = PGM_GST_PFN(Exit, pVCpu)(pVCpu); 2550 2550 AssertRC(rc); 2551 #ifdef REMEMBER_TO_ENABLE_THESE_GCPhycCR3_NIL_ASSIGNMENTS /** @todo Enable r113096 and fix. */ 2552 pVCpu->pgm.s.GCPhysCR3 = NIL_RTGCPHYS; 2553 #endif 2551 2554 2552 2555 rc = PGMR3ChangeMode(pVM, pVCpu, PGMMODE_REAL); … … 2603 2606 int rc = PGM_GST_PFN(Exit, pVCpu)(pVCpu); 2604 2607 AssertReleaseRC(rc); 2608 #ifdef REMEMBER_TO_ENABLE_THESE_GCPhycCR3_NIL_ASSIGNMENTS /** @todo Enable r113096 and fix. */ 2609 pVCpu->pgm.s.GCPhysCR3 = NIL_RTGCPHYS; 2610 #endif 2605 2611 } 2606 2612 … … 3514 3520 } 3515 3521 } 3522 #ifdef REMEMBER_TO_ENABLE_THESE_GCPhycCR3_NIL_ASSIGNMENTS /** @todo Enable r113096 and fix. */ 3523 pVCpu->pgm.s.GCPhysCR3 = NIL_RTGCPHYS; 3524 #endif 3516 3525 3517 3526 /* … … 3740 3749 int rc = PGM_BTH_PFN(UnmapCR3, pVCpu)(pVCpu); 3741 3750 AssertRC(rc); 3751 #ifdef REMEMBER_TO_ENABLE_THESE_GCPhycCR3_NIL_ASSIGNMENTS /** @todo Enable r113096 and fix. */ 3752 pVCpu->pgm.s.GCPhysCR3 = NIL_RTGCPHYS; 3753 #endif 3742 3754 3743 3755 /* Exit the current shadow paging mode as well; nested paging and EPT use a root CR3 which will get flushed here. */
Note:
See TracChangeset
for help on using the changeset viewer.