diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-12-09 21:29:36 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-12-09 21:29:36 +0000 |
commit | cc0eda4efd869249fe87a4c7c0af52ed41b42c4f (patch) | |
tree | 7b6f9365bc0ae929413cab89836a56cb003519d2 /sys | |
parent | a5db445da4643854fc012ea62df4c44a2a282d7c (diff) | |
download | src-cc0eda4efd869249fe87a4c7c0af52ed41b42c4f.tar.gz src-cc0eda4efd869249fe87a4c7c0af52ed41b42c4f.zip |
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. :-(
Notes
Notes:
svn path=/head/; revision=216337
Diffstat (limited to 'sys')
-rw-r--r-- | sys/x86/x86/tsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/tsc.c b/sys/x86/x86/tsc.c index ae2cba408f19..e39c4af52e91 100644 --- a/sys/x86/x86/tsc.c +++ b/sys/x86/x86/tsc.c @@ -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: |