Changeset 87347 in vbox
- Timestamp:
- Jan 21, 2021 11:55:06 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r83197 r87347 2959 2959 * Restore a couple of flags and the MSRs. 2960 2960 */ 2961 SSMR3GetU32(pSSM, &pVCpu->cpum.s.fUseFlags); 2961 uint32_t fIgnoredUsedFlags = 0; 2962 rc = SSMR3GetU32(pSSM, &fIgnoredUsedFlags); /* we're recalc the two relevant flags after loading state. */ 2963 AssertRCReturn(rc, rc); 2962 2964 SSMR3GetU32(pSSM, &pVCpu->cpum.s.fChanged); 2963 2965 … … 3115 3117 if (fSupportsLongMode) 3116 3118 pVCpu->cpum.s.fUseFlags |= CPUM_USE_SUPPORTS_LONGMODE; 3119 3120 /* Recalc the CPUM_USE_DEBUG_REGS_HYPER value. */ 3121 CPUMRecalcHyperDRx(pVCpu, UINT8_MAX); 3117 3122 } 3118 3123 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.