Changeset 72522 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Jun 12, 2018 8:45:27 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123009
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r72466 r72522 4418 4418 && !(pVmcb->ctrl.u64InterceptCtrl & SVM_CTRL_INTERCEPT_RDTSCP)) 4419 4419 { 4420 uint64_t const uGuestTscAux = CPUM R0GetGuestTscAux(pVCpu);4420 uint64_t const uGuestTscAux = CPUMGetGuestTscAux(pVCpu); 4421 4421 pVCpu->hm.s.u64HostTscAux = ASMRdMsr(MSR_K8_TSC_AUX); 4422 4422 if (uGuestTscAux != pVCpu->hm.s.u64HostTscAux) … … 4561 4561 { 4562 4562 uint64_t u64GuestTscAuxMsr = ASMRdMsr(MSR_K8_TSC_AUX); 4563 CPUM R0SetGuestTscAux(pVCpu, u64GuestTscAuxMsr);4563 CPUMSetGuestTscAux(pVCpu, u64GuestTscAuxMsr); 4564 4564 if (u64GuestTscAuxMsr != pVCpu->hm.s.u64HostTscAux) 4565 4565 ASMWrMsr(MSR_K8_TSC_AUX, pVCpu->hm.s.u64HostTscAux);
Note:
See TracChangeset
for help on using the changeset viewer.