Changeset 73250 in vbox for trunk/src/VBox/VMM/VMMR3/PGMGst.h
- Timestamp:
- Jul 19, 2018 5:57:31 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123856
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMGst.h
r73199 r73250 45 45 * Map and monitor CR3 46 46 */ 47 int rc = PGM_BTH_PFN(MapCR3, pVCpu)(pVCpu, GCPhysCR3); 48 return rc; 47 uintptr_t idxBth = pVCpu->pgm.s.idxBothModeData; 48 AssertReturn(idxBth < RT_ELEMENTS(g_aPgmBothModeData), VERR_PGM_MODE_IPE); 49 AssertReturn(g_aPgmBothModeData[idxBth].pfnMapCR3, VERR_PGM_MODE_IPE); 50 return g_aPgmBothModeData[idxBth].pfnMapCR3(pVCpu, GCPhysCR3); 49 51 } 50 52 … … 79 81 PGM_GST_DECL(int, Exit)(PVMCPU pVCpu) 80 82 { 81 int rc;82 83 rc = PGM_BTH_PFN(UnmapCR3, pVCpu)(pVCpu);84 return rc;83 uintptr_t idxBth = pVCpu->pgm.s.idxBothModeData; 84 AssertReturn(idxBth < RT_ELEMENTS(g_aPgmBothModeData), VERR_PGM_MODE_IPE); 85 AssertReturn(g_aPgmBothModeData[idxBth].pfnUnmapCR3, VERR_PGM_MODE_IPE); 86 return g_aPgmBothModeData[idxBth].pfnUnmapCR3(pVCpu); 85 87 } 86 88
Note:
See TracChangeset
for help on using the changeset viewer.