Changeset 70732 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Jan 25, 2018 4:50:36 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r70721 r70732 2234 2234 { 2235 2235 Assert(pVM->hm.s.svm.fVGif); 2236 pVmcb->ctrl.IntCtrl.n.u1VGif = pCtx->hwvirt. svm.fGif;2236 pVmcb->ctrl.IntCtrl.n.u1VGif = pCtx->hwvirt.fGif; 2237 2237 } 2238 2238 #endif … … 2528 2528 { 2529 2529 Assert(pVCpu->CTX_SUFF(pVM)->hm.s.svm.fVGif); 2530 pMixedCtx->hwvirt. svm.fGif = pVmcb->ctrl.IntCtrl.n.u1VGif;2530 pMixedCtx->hwvirt.fGif = pVmcb->ctrl.IntCtrl.n.u1VGif; 2531 2531 } 2532 2532 #endif … … 3408 3408 Assert(!pVCpu->hm.s.Event.fPending); 3409 3409 3410 bool const fGif = pCtx->hwvirt. svm.fGif;3410 bool const fGif = pCtx->hwvirt.fGif; 3411 3411 if (fGif) 3412 3412 { … … 3538 3538 3539 3539 #ifdef VBOX_WITH_NESTED_HWVIRT 3540 bool const fGif = pCtx->hwvirt. svm.fGif;3540 bool const fGif = pCtx->hwvirt.fGif; 3541 3541 #else 3542 3542 bool const fGif = true; … … 3637 3637 bool const fIntShadow = hmR0SvmIsIntrShadowActive(pVCpu, pCtx); 3638 3638 #ifdef VBOX_STRICT 3639 bool const fGif = pCtx->hwvirt. svm.fGif;3639 bool const fGif = pCtx->hwvirt.fGif; 3640 3640 bool fAllowInt = fGif; 3641 3641 if (fGif)
Note:
See TracChangeset
for help on using the changeset viewer.