Changeset 58547 in vbox
- Timestamp:
- Nov 2, 2015 11:12:04 PM (9 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
-
VMMR3/CPUMR3Db.cpp (modified) (2 diffs)
-
tools/VBoxCpuReport.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3Db.cpp
r58122 r58547 183 183 #include "cpus/Intel_Pentium_M_processor_2_00GHz.h" 184 184 #include "cpus/Intel_Pentium_4_3_00GHz.h" 185 #include "cpus/Intel_Atom_330_1_60GHz.h" 185 186 186 187 #include "cpus/AMD_FX_8150_Eight_Core.h" … … 216 217 #ifdef VBOX_CPUDB_Intel_Core_i7_2635QM 217 218 &g_Entry_Intel_Core_i7_2635QM, 219 #endif 220 #ifdef VBOX_CPUDB_Intel_Atom_330_1_60GHz 221 &g_Entry_Intel_Atom_330_1_60GHz, 218 222 #endif 219 223 #ifdef Intel_Pentium_M_processor_2_00GHz -
trunk/src/VBox/VMM/tools/VBoxCpuReport.cpp
r54737 r58547 508 508 #endif 509 509 /* Skip 0xc0011012..13 as it seems to be bad for our health (Phenom II X6 1100T). */ 510 if ((uMsr >= 0xc0011012 && uMsr <= 0xc0011013) && g_enmVendor == CPUMCPUVENDOR_AMD) 510 /* Ditto for 0x0000002a (EBL_CR_POWERON) and 0x00000277 (MSR_IA32_CR_PAT) on Intel (Atom 330). */ 511 if ( ((uMsr >= 0xc0011012 && uMsr <= 0xc0011013) && g_enmVendor == CPUMCPUVENDOR_AMD) 512 || ( (uMsr == 0x2a || uMsr == 0x277) 513 && g_enmVendor == CPUMCPUVENDOR_INTEL 514 && g_enmMicroarch == kCpumMicroarch_Intel_Atom_Bonnell)) 511 515 vbCpuRepDebug("Skipping %#x\n", uMsr); 512 516 else
Note:
See TracChangeset
for help on using the changeset viewer.

