From owner-svn-src-all@freebsd.org Thu Jul 23 17:27:11 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABE399A98DD; Thu, 23 Jul 2015 17:27:11 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C7401442; Thu, 23 Jul 2015 17:27:11 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6NHRBBj064318; Thu, 23 Jul 2015 17:27:11 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6NHRB8K064317; Thu, 23 Jul 2015 17:27:11 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201507231727.t6NHRB8K064317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Thu, 23 Jul 2015 17:27:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r285817 - head/share/man/man5 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2015 17:27:11 -0000 Author: brooks Date: Thu Jul 23 17:27:10 2015 New Revision: 285817 URL: https://svnweb.freebsd.org/changeset/base/285817 Log: Document the fact that tunables can be set in device.hints. Reviewed by: wblock MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D3153 Modified: head/share/man/man5/device.hints.5 Modified: head/share/man/man5/device.hints.5 ============================================================================== --- head/share/man/man5/device.hints.5 Thu Jul 23 15:50:39 2015 (r285816) +++ head/share/man/man5/device.hints.5 Thu Jul 23 17:27:10 2015 (r285817) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 11, 2009 +.Dd July 23, 2015 .Dt DEVICE.HINTS 5 .Os .Sh NAME @@ -41,9 +41,8 @@ passed to the kernel. It contains various variables to control the boot behavior of the kernel. These variables are typically -.Dq device hints . -.\" .Dq device hints , -.\" and other control variables. +.Dq device hints , +but can include any kernel tunable values. .Pp The file contains one variable per line. Lines starting with the @@ -152,12 +151,11 @@ The following example disables the ACPI .Bd -literal -offset indent hint.acpi.0.disabled="1" .Ed -.\" .Pp -.\" A control variable may look like: -.\" .Pp -.\" .Bd -literal -offset indent -.\" debug.acpi.layer="ACPI_RESOURCES" -.\" .Ed +.Pp +Setting a tunable variable: +.Bd -literal -offset indent +vm.pmap.pg_ps_enabled=1 +.Ed .Sh SEE ALSO .Xr kenv 1 , .Xr loader.conf 5 ,