Turn "PMAP_SHPGPERPROC" into a new-style option, add it to LINT, and

document it there.
This commit is contained in:
eivind 1998-03-09 22:09:13 +00:00
parent a165a47d4a
commit 46c54ceaa3
7 changed files with 50 additions and 7 deletions

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.187 1998/03/01 04:18:54 dyson Exp $
* $Id: pmap.c,v 1.188 1998/03/07 21:34:44 dyson Exp $
*/
/*
@ -69,6 +69,7 @@
*/
#include "opt_disable_pse.h"
#include "opt_pmap.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.413 1998/02/27 10:02:41 itojun Exp $
# $Id: LINT,v 1.414 1998/03/08 09:56:31 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1391,6 +1391,19 @@ options GATEWAY
#
options HW_WDOG
#
# Set the number of PV entries per process. Increasing this can
# stop panics related to heavy use of shared memory. However, that can
# (combined with large amounts of physical memory) cause panics at
# boot time due the kernel running out of VM space.
#
# If you're tweaking this, you might also want to increase the sysctls
# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
#
# The value below is the default.
#
options "PMAP_SHPGPERPROC=200"
# More undocumented options for linting.
options CLK_CALIBRATION_LOOP

View File

@ -1,10 +1,11 @@
# $Id: options.i386,v 1.74 1998/02/20 04:19:15 steve Exp $
# $Id: options.i386,v 1.75 1998/02/21 10:11:41 eivind Exp $
BOUNCEPAGES opt_bounce.h
DISABLE_PSE
USER_LDT
MATH_EMULATE opt_math_emulate.h
GPL_MATH_EMULATE opt_math_emulate.h
PMAP_SHPGPERPROC opt_pmap.h
VM86 opt_vm86.h
IBCS2 opt_dontuse.h

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.413 1998/02/27 10:02:41 itojun Exp $
# $Id: LINT,v 1.414 1998/03/08 09:56:31 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1391,6 +1391,19 @@ options GATEWAY
#
options HW_WDOG
#
# Set the number of PV entries per process. Increasing this can
# stop panics related to heavy use of shared memory. However, that can
# (combined with large amounts of physical memory) cause panics at
# boot time due the kernel running out of VM space.
#
# If you're tweaking this, you might also want to increase the sysctls
# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
#
# The value below is the default.
#
options "PMAP_SHPGPERPROC=200"
# More undocumented options for linting.
options CLK_CALIBRATION_LOOP

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.413 1998/02/27 10:02:41 itojun Exp $
# $Id: LINT,v 1.414 1998/03/08 09:56:31 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -1391,6 +1391,19 @@ options GATEWAY
#
options HW_WDOG
#
# Set the number of PV entries per process. Increasing this can
# stop panics related to heavy use of shared memory. However, that can
# (combined with large amounts of physical memory) cause panics at
# boot time due the kernel running out of VM space.
#
# If you're tweaking this, you might also want to increase the sysctls
# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
#
# The value below is the default.
#
options "PMAP_SHPGPERPROC=200"
# More undocumented options for linting.
options CLK_CALIBRATION_LOOP

View File

@ -1,10 +1,11 @@
# $Id: options.i386,v 1.74 1998/02/20 04:19:15 steve Exp $
# $Id: options.i386,v 1.75 1998/02/21 10:11:41 eivind Exp $
BOUNCEPAGES opt_bounce.h
DISABLE_PSE
USER_LDT
MATH_EMULATE opt_math_emulate.h
GPL_MATH_EMULATE opt_math_emulate.h
PMAP_SHPGPERPROC opt_pmap.h
VM86 opt_vm86.h
IBCS2 opt_dontuse.h

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.187 1998/03/01 04:18:54 dyson Exp $
* $Id: pmap.c,v 1.188 1998/03/07 21:34:44 dyson Exp $
*/
/*
@ -69,6 +69,7 @@
*/
#include "opt_disable_pse.h"
#include "opt_pmap.h"
#include <sys/param.h>
#include <sys/systm.h>