summaryrefslogtreecommitdiffstats
path: root/sys/dev/coretemp
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2011-08-19 13:31:48 +0000
committerattilio <attilio@FreeBSD.org>2011-08-19 13:31:48 +0000
commita667edfdd169f0e6974d4e5159be1ec14f082bd1 (patch)
tree089e06aab6196231fd848453f1d1fc2782970330 /sys/dev/coretemp
parent8b395ee11e3498950e356f3149086bc192bc5cbe (diff)
downloadFreeBSD-src-a667edfdd169f0e6974d4e5159be1ec14f082bd1.zip
FreeBSD-src-a667edfdd169f0e6974d4e5159be1ec14f082bd1.tar.gz
Bump the maximum coretemp limit (for CPU temperature) to 110. Several
cores with temp in the range 101-105 have been found in the past. Sponsored by: Sandvine Incorporated Reviewed by: delphij, emaste Approved by: re (kib) MFC after: 3 days
Diffstat (limited to 'sys/dev/coretemp')
-rw-r--r--sys/dev/coretemp/coretemp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/coretemp/coretemp.c b/sys/dev/coretemp/coretemp.c
index 411b9ee..92109ad 100644
--- a/sys/dev/coretemp/coretemp.c
+++ b/sys/dev/coretemp/coretemp.c
@@ -225,12 +225,12 @@ coretemp_attach(device_t dev)
* these numbers are, with the publicly available
* documents from Intel.
*
- * For now, we consider [70, 100]C range, as
+ * For now, we consider [70, 110]C range, as
* described in #322683, as "reasonable" and accept
* these values whenever the MSR is available for
* read, regardless the CPU model.
*/
- if (tjtarget >= 70 && tjtarget <= 100)
+ if (tjtarget >= 70 && tjtarget <= 110)
sc->sc_tjmax = tjtarget;
else
device_printf(dev, "Tj(target) value %d "
OpenPOWER on IntegriCloud