Changeset 13830 in vbox for trunk/src/VBox/VMM/PATM/PATMPatch.cpp
- Timestamp:
- Nov 5, 2008 1:49:18 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38821
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATMPatch.cpp
r13822 r13830 236 236 case PATM_CPUID_STD_PTR: 237 237 /* @todo dirty hack when correcting this fixup (state restore) */ 238 dest = CPUMGetGuestCpuIdStd GCPtr(pVM);238 dest = CPUMGetGuestCpuIdStdRCPtr(pVM); 239 239 break; 240 240 241 241 case PATM_CPUID_EXT_PTR: 242 242 /* @todo dirty hack when correcting this fixup (state restore) */ 243 dest = CPUMGetGuestCpuIdExt GCPtr(pVM);243 dest = CPUMGetGuestCpuIdExtRCPtr(pVM); 244 244 break; 245 245 246 246 case PATM_CPUID_CENTAUR_PTR: 247 247 /* @todo dirty hack when correcting this fixup (state restore) */ 248 dest = CPUMGetGuestCpuIdCentaur GCPtr(pVM);248 dest = CPUMGetGuestCpuIdCentaurRCPtr(pVM); 249 249 break; 250 250 251 251 case PATM_CPUID_DEF_PTR: 252 252 /* @todo dirty hack when correcting this fixup (state restore) */ 253 dest = CPUMGetGuestCpuIdDef GCPtr(pVM);253 dest = CPUMGetGuestCpuIdDefRCPtr(pVM); 254 254 break; 255 255 … … 287 287 case PATM_VM_FORCEDACTIONS: 288 288 /* @todo dirty assumptions when correcting this fixup during saved state loading. */ 289 dest = pVM->pVM GC + RT_OFFSETOF(VM, fForcedActions);289 dest = pVM->pVMRC + RT_OFFSETOF(VM, fForcedActions); 290 290 break; 291 291
Note:
See TracChangeset
for help on using the changeset viewer.