Changeset 49990 in vbox
- Timestamp:
- Dec 19, 2013 4:54:12 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r49971 r49990 2977 2977 2978 2978 /* Setup TSC offsetting. */ 2979 RTCPUID idCurrentCpu = HMR0GetCurrentCpu()->idCpu; 2979 2980 if ( pSvmTransient->fUpdateTscOffsetting 2980 || HMR0GetCurrentCpu()->idCpu != pVCpu->hm.s.idLastCpu)2981 || idCurrentCpu != pVCpu->hm.s.idLastCpu) 2981 2982 { 2982 2983 hmR0SvmUpdateTscOffsetting(pVCpu); … … 2985 2986 2986 2987 /* If we've migrating CPUs, mark the VMCB Clean bits as dirty. */ 2987 if ( HMR0GetCurrentCpu()->idCpu != pVCpu->hm.s.idLastCpu)2988 if (idCurrentCpu != pVCpu->hm.s.idLastCpu) 2988 2989 pVmcb->ctrl.u64VmcbCleanBits = 0; 2989 2990
Note:
See TracChangeset
for help on using the changeset viewer.