Changeset 49580 in vbox
- Timestamp:
- Nov 20, 2013 12:16:14 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49579 r49580 7887 7887 * fill those values in. Subsequently, it's updated as part of the host state. 7888 7888 */ 7889 if (!pVCpu->hm.s.vmx.fUpdatedHostMsrs) 7889 if ( !pVCpu->hm.s.vmx.fUpdatedHostMsrs 7890 && pVCpu->hm.s.vmx.cMsrs > 0) 7891 { 7890 7892 VMCPU_HMCF_SET(pVCpu, HM_CHANGED_HOST_CONTEXT); 7893 } 7891 7894 7892 7895 /* … … 7900 7903 AssertRC(rc); 7901 7904 STAM_COUNTER_INC(&pVCpu->hm.s.StatPreemptSaveHostState); 7902 7903 /*7904 * Prevent unnecessary host-state updates in case fUpdatedHostMsrs remains false7905 * throughout execution (e.g. if we are not swapping any MSRs)7906 */7907 pVCpu->hm.s.vmx.fUpdatedHostMsrs = true;7908 7905 } 7909 7906 Assert(!VMCPU_HMCF_IS_PENDING(pVCpu, HM_CHANGED_HOST_CONTEXT));
Note:
See TracChangeset
for help on using the changeset viewer.