mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Remove AMD Family 0Fh, Model 6Bh, Stepping 2 from the list of P-state
invariant CPUs. I do not believe this model is P-state invariant any more. Maybe cpufreq(4) was broken at the time of commit. :-(
This commit is contained in:
parent
a5db445da4
commit
cc0eda4efd
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ init_TSC(void)
|
|||
switch (cpu_vendor_id) {
|
||||
case CPU_VENDOR_AMD:
|
||||
if ((amd_pminfo & AMDPM_TSC_INVARIANT) ||
|
||||
CPUID_TO_FAMILY(cpu_id) >= 0x10 || cpu_id == 0x60fb2)
|
||||
CPUID_TO_FAMILY(cpu_id) >= 0x10)
|
||||
tsc_is_invariant = 1;
|
||||
break;
|
||||
case CPU_VENDOR_INTEL:
|
||||
|
|
|
|||
Loading…
Reference in a new issue