Changeset 16902 in vbox
- Timestamp:
- Feb 18, 2009 1:37:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r16901 r16902 4653 4653 4654 4654 # ifndef PGM_WITHOUT_MAPPINGS 4655 /* Apply all hypervisor mappings to the new CR3. */ 4655 /* Apply all hypervisor mappings to the new CR3. 4656 * Note that SyncCR3 will be executed in case CR3 is changed in a guest paging mode; this will 4657 * make sure we check for conflicts in the new CR3 root. 4658 */ 4659 # if PGM_WITH_PAGING(PGM_GST_TYPE, PGM_SHW_TYPE) 4660 Assert(VM_FF_ISSET(pVM, VM_FF_PGM_SYNC_CR3_NON_GLOBAL)); 4661 # endif 4656 4662 rc = PGMMapActivateAll(pVM); 4657 4663 AssertRCReturn(rc, rc); … … 4754 4760 4755 4761 # ifndef PGM_WITHOUT_MAPPINGS 4756 /* Remove the hypervisor mappings from the shadow page table. 4757 * Note that SyncCR3 will be executed in case CR3 is changed in a guest paging mode; this will 4758 * make sure we check for conflicts in the new CR3 root. 4759 */ 4762 /* Remove the hypervisor mappings from the shadow page table. */ 4760 4763 PGMMapDeactivateAll(pVM); 4761 4764 # endif
Note:
See TracChangeset
for help on using the changeset viewer.