svn commit: r276987 - in stable/9/sys: amd64/conf i386/conf

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Jan 11 17:18:15 UTC 2015


Author: nwhitehorn
Date: Sun Jan 11 17:18:14 2015
New Revision: 276987
URL: https://svnweb.freebsd.org/changeset/base/276987

Log:
  MFC r265329:
  Disable ACPI and P4TCC throttling by default, following discussion on
  freebsd-current. These CPU speed control techniques are usually unhelpful
  at best. For now, continue building the relevant code into GENERIC so that
  it can trivially be re-enabled at runtime if anyone wants it.
  
  Relnotes:	yes

Modified:
  stable/9/sys/amd64/conf/GENERIC.hints
  stable/9/sys/i386/conf/GENERIC.hints
Directory Properties:
  stable/9/   (props changed)
  stable/9/sys/   (props changed)

Modified: stable/9/sys/amd64/conf/GENERIC.hints
==============================================================================
--- stable/9/sys/amd64/conf/GENERIC.hints	Sun Jan 11 17:10:07 2015	(r276986)
+++ stable/9/sys/amd64/conf/GENERIC.hints	Sun Jan 11 17:18:14 2015	(r276987)
@@ -31,3 +31,5 @@ hint.attimer.0.at="isa"
 hint.attimer.0.port="0x40"
 hint.attimer.0.irq="0"
 hint.wbwd.0.at="isa"
+hint.acpi_throttle.0.disabled="1"
+hint.p4tcc.0.disabled="1"

Modified: stable/9/sys/i386/conf/GENERIC.hints
==============================================================================
--- stable/9/sys/i386/conf/GENERIC.hints	Sun Jan 11 17:10:07 2015	(r276986)
+++ stable/9/sys/i386/conf/GENERIC.hints	Sun Jan 11 17:18:14 2015	(r276987)
@@ -39,3 +39,5 @@ hint.attimer.0.at="isa"
 hint.attimer.0.port="0x40"
 hint.attimer.0.irq="0"
 hint.wbwd.0.at="isa"
+hint.acpi_throttle.0.disabled="1"
+hint.p4tcc.0.disabled="1"


More information about the svn-src-all mailing list