Changeset 41302 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 15, 2012 10:03:37 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r41282 r41302 340 340 | SVM_CTRL1_INTERCEPT_FERR_FREEZE; /* Legacy FPU FERR handling. */ 341 341 ; 342 /* With nested paging we don't care about invlpg anymore. */342 /* With nested paging we don't care about invlpg or task switches anymore. */ 343 343 if (pVM->hwaccm.s.fNestedPaging) 344 pVMCB->ctrl.u32InterceptCtrl1 &= ~ SVM_CTRL1_INTERCEPT_INVLPG;344 pVMCB->ctrl.u32InterceptCtrl1 &= ~(SVM_CTRL1_INTERCEPT_INVLPG | SVM_CTRL1_INTERCEPT_TASK_SWITCH); 345 345 346 346 pVMCB->ctrl.u32InterceptCtrl2 = SVM_CTRL2_INTERCEPT_VMRUN /* required */
Note:
See TracChangeset
for help on using the changeset viewer.