Changeset 55129 in vbox for trunk/src/VBox/VMM/VMMR3/GIMKvm.cpp
- Timestamp:
- Apr 8, 2015 11:31:47 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GIMKvm.cpp
r55118 r55129 143 143 144 144 /* 145 * Setup #UD and hypercall behaviour. 146 */ 147 VMMHypercallsEnable(pVM); 145 * Setup hypercall and #UD handling. 146 */ 147 for (VMCPUID i = 0; i < pVM->cCpus; i++) 148 VMMHypercallsEnable(&pVM->aCpus[i]); 149 148 150 if (ASMIsAmdCpu()) 149 151 { … … 157 159 pKvm->uOpCodeNative = OP_VMCALL; 158 160 } 161 159 162 /* We always need to trap VMCALL/VMMCALL hypercall using #UDs for raw-mode VMs. */ 160 163 if (!HMIsEnabled(pVM))
Note:
See TracChangeset
for help on using the changeset viewer.