Changeset 82706 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jan 10, 2020 5:28:31 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135632
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r82016 r82706 1071 1071 /* 1072 1072 * Allocate the MSRPM (MSR Permission bitmap). 1073 * 1074 * This need not be physically contiguous pages because we use the one from 1075 * HMPHYSCPU while executing the nested-guest using hardware-assisted SVM. 1076 * This one is just used for caching the bitmap from guest physical memory. 1073 1077 */ 1074 1078 Assert(!pVCpu->cpum.s.Guest.hwvirt.svm.pvMsrBitmapR3); … … 1085 1089 /* 1086 1090 * Allocate the IOPM (IO Permission bitmap). 1091 * 1092 * This need not be physically contiguous pages because we re-use the ring-0 1093 * allocated IOPM while executing the nested-guest using hardware-assisted SVM 1094 * because it's identical (we trap all IO accesses). 1095 * 1096 * This one is just used for caching the IOPM from guest physical memory in 1097 * case the guest hypervisor allows direct access to some IO ports. 1087 1098 */ 1088 1099 Assert(!pVCpu->cpum.s.Guest.hwvirt.svm.pvIoBitmapR3);
Note:
See TracChangeset
for help on using the changeset viewer.