Skip to content
This repository was archived by the owner on May 22, 2018. It is now read-only.

Commit 6156254

Browse files
committed
CP-3989/CP-3940: Add CPUID masking support for Intel Haswell DT and Ivy Bridge EN and EP
This adds CPU models 0x3c and 0x3e to the whitelist. Signed-off-by: Rob Hoes <[email protected]>
1 parent 7a0e40e commit 6156254

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpuid/cpuid.ml

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ let read_features () =
111111
* It's not sensibly documented, so check by model *)
112112
let has_flexmigration family model stepping =
113113
let fully_maskable_models =
114-
[0x17l; 0x1dl; 0x1el; 0x1fl; 0x25l; 0x2al; 0x2cl; 0x2cl; 0x2dl; 0x2el; 0x2fl; 0x3al] in
114+
[0x17l; 0x1dl; 0x1el; 0x1fl; 0x25l; 0x2al; 0x2cl; 0x2cl; 0x2dl; 0x2el; 0x2fl; 0x3al;
115+
0x3cl; 0x3el] in
115116
if family <> 0x6l then
116117
No
117118
else if model = 0x1dl || (model = 0x17l && stepping >= 4l) then

0 commit comments

Comments
 (0)