Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Dec 2008 19:37:52 +0000 (UTC)
From:      Alan Cox <alc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185715 - head/sys/amd64/amd64
Message-ID:  <200812061937.mB6JbqAI003273@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: alc
Date: Sat Dec  6 19:37:52 2008
New Revision: 185715
URL: http://svn.freebsd.org/changeset/base/185715

Log:
  Change the default value for the flag enabling superpage mapping and
  promotion to "on".
  
  Reminded by:	jhb
  Tested by:	kris

Modified:
  head/sys/amd64/amd64/pmap.c

Modified: head/sys/amd64/amd64/pmap.c
==============================================================================
--- head/sys/amd64/amd64/pmap.c	Sat Dec  6 19:21:56 2008	(r185714)
+++ head/sys/amd64/amd64/pmap.c	Sat Dec  6 19:37:52 2008	(r185715)
@@ -180,7 +180,7 @@ pt_entry_t pg_nx;
 
 SYSCTL_NODE(_vm, OID_AUTO, pmap, CTLFLAG_RD, 0, "VM/pmap parameters");
 
-static int pg_ps_enabled;
+static int pg_ps_enabled = 1;
 SYSCTL_INT(_vm_pmap, OID_AUTO, pg_ps_enabled, CTLFLAG_RD, &pg_ps_enabled, 0,
     "Are large page mappings enabled?");
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812061937.mB6JbqAI003273>