Author: attilio
Date: Tue Aug 23 09:42:29 2011
New Revision: 225105
URL: http://svn.freebsd.org/changeset/base/225105

Log:
  MFC r225009:
  Bump coretemp tollerable limit to 110 degrees.
  
  Sponsored by: Sandvine Incorporated

Modified:
  stable/8/sys/dev/coretemp/coretemp.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/coretemp/coretemp.c
==============================================================================
--- stable/8/sys/dev/coretemp/coretemp.c        Tue Aug 23 08:47:27 2011        
(r225104)
+++ stable/8/sys/dev/coretemp/coretemp.c        Tue Aug 23 09:42:29 2011        
(r225105)
@@ -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 "
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to