- Timestamp:
- Jun 29, 2018 11:28:28 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123313
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r72769 r72772 1618 1618 RT_NOREF(pCtx); 1619 1619 STAM_COUNTER_INC(&pVCpu->hm.s.StatDebug64SwitchBack); 1620 if (pV Cpu->CTX_SUFF(pVM)->hm.s.vmx.fSupported)1620 if (pVM->hm.s.vmx.fSupported) 1621 1621 return VMXR0Execute64BitsHandler(pVCpu, HM64ON32OP_HMRCSaveGuestDebug64, 0, NULL); 1622 1622 return SVMR0Execute64BitsHandler(pVCpu, HM64ON32OP_HMRCSaveGuestDebug64, 0, NULL); -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r72771 r72772 1365 1365 DECLASM(int) SVMR0VMSwitcherRun64(RTHCPHYS HCPhysVmcbHost, RTHCPHYS HCPhysVmcb, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu) 1366 1366 { 1367 RT_NOREF (pVM);1367 RT_NOREF2(pVM, pCtx); 1368 1368 uint32_t aParam[8]; 1369 1369 aParam[0] = RT_LO_U32(HCPhysVmcbHost); /* Param 1: HCPhysVmcbHost - Lo. */ … … 1457 1457 { 1458 1458 bool fRemove = true; 1459 # ifdef VBOX_WITH_NESTED_HWVIRT_SVM1459 # ifdef VBOX_WITH_NESTED_HWVIRT_SVM 1460 1460 /* Only remove the intercept if the nested-guest is also not intercepting it! */ 1461 1461 PCCPUMCTX pCtx = &pVCpu->cpum.GstCtx; … … 1465 1465 fRemove = !(pVmcbNstGstCache->u32InterceptXcpt & RT_BIT(uXcpt)); 1466 1466 } 1467 #endif 1467 # else 1468 RT_NOREF(pVCpu); 1469 # endif 1468 1470 if (fRemove) 1469 1471 {
Note:
See TracChangeset
for help on using the changeset viewer.