Changeset 19075 in vbox for trunk/src/VBox/VMM/PATM
- Timestamp:
- Apr 21, 2009 1:11:03 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46213
- Location:
- trunk/src/VBox/VMM/PATM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATMPatch.cpp
r18927 r19075 236 236 case PATM_CPUID_STD_PTR: 237 237 /* @todo dirty hack when correcting this fixup (state restore) */ 238 dest = CPUM GetGuestCpuIdStdRCPtr(pVM);238 dest = CPUMR3GetGuestCpuIdStdRCPtr(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 = CPUM GetGuestCpuIdExtRCPtr(pVM);243 dest = CPUMR3GetGuestCpuIdExtRCPtr(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 = CPUM GetGuestCpuIdCentaurRCPtr(pVM);248 dest = CPUMR3GetGuestCpuIdCentaurRCPtr(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 = CPUM GetGuestCpuIdDefRCPtr(pVM);253 dest = CPUMR3GetGuestCpuIdDefRCPtr(pVM); 254 254 break; 255 255 -
trunk/src/VBox/VMM/PATM/PATMSSM.cpp
r18927 r19075 893 893 { 894 894 case 0: 895 *pFixup = CPUM GetGuestCpuIdDefRCPtr(pVM);895 *pFixup = CPUMR3GetGuestCpuIdDefRCPtr(pVM); 896 896 break; 897 897 case 1: 898 *pFixup = CPUM GetGuestCpuIdStdRCPtr(pVM);898 *pFixup = CPUMR3GetGuestCpuIdStdRCPtr(pVM); 899 899 break; 900 900 case 2: 901 *pFixup = CPUM GetGuestCpuIdExtRCPtr(pVM);901 *pFixup = CPUMR3GetGuestCpuIdExtRCPtr(pVM); 902 902 break; 903 903 case 3: 904 *pFixup = CPUM GetGuestCpuIdCentaurRCPtr(pVM);904 *pFixup = CPUMR3GetGuestCpuIdCentaurRCPtr(pVM); 905 905 break; 906 906 }
Note:
See TracChangeset
for help on using the changeset viewer.