1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

As the default MAXDSIZ and DFLDSIZ is 512MB, bump the example values

to 1GB. A box of mine is running with MAXDSIZ and DFLDSIZ increased
up to 1.5GB.

Wishlist: It would be nice to warn if MAXTSIZ + MAXDSIZ + MAXSSIZ
exceeds VM_MAXUSER_ADDRESS - VM_MINUSER_ADDRESS.
This commit is contained in:
Seigo Tanimura 2001-01-31 04:07:34 +00:00
parent f8a19b12fb
commit 98eb90094e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71857
2 changed files with 8 additions and 8 deletions

View File

@ -60,17 +60,17 @@ makeoptions CONF_CFLAGS=-fno-builtin #Don't allow use of memcmp, etc.
#makeoptions KERNEL=foo #Build kernel "foo" and install "/foo"
#
# Certain applications can grow to be larger than the 128M limit
# Certain applications can grow to be larger than the 512M limit
# that FreeBSD initially imposes. Below are some options to
# allow that limit to grow to 256MB, and can be increased further
# allow that limit to grow to 1GB, and can be increased further
# with changing the parameters. MAXDSIZ is the maximum that the
# limit can be set to, and the DFLDSIZ is the default value for
# the limit. You might want to set the default lower than the
# max, and explicitly set the maximum with a shell command for processes
# that regularly exceed the limit like INND.
#
options MAXDSIZ="(256*1024*1024)"
options DFLDSIZ="(256*1024*1024)"
options MAXDSIZ="(1024UL*1024*1024)"
options DFLDSIZ="(1024UL*1024*1024)"
#
# BLKDEV_IOSIZE sets the default block size used in user block

View File

@ -60,17 +60,17 @@ makeoptions CONF_CFLAGS=-fno-builtin #Don't allow use of memcmp, etc.
#makeoptions KERNEL=foo #Build kernel "foo" and install "/foo"
#
# Certain applications can grow to be larger than the 128M limit
# Certain applications can grow to be larger than the 512M limit
# that FreeBSD initially imposes. Below are some options to
# allow that limit to grow to 256MB, and can be increased further
# allow that limit to grow to 1GB, and can be increased further
# with changing the parameters. MAXDSIZ is the maximum that the
# limit can be set to, and the DFLDSIZ is the default value for
# the limit. You might want to set the default lower than the
# max, and explicitly set the maximum with a shell command for processes
# that regularly exceed the limit like INND.
#
options MAXDSIZ="(256*1024*1024)"
options DFLDSIZ="(256*1024*1024)"
options MAXDSIZ="(1024UL*1024*1024)"
options DFLDSIZ="(1024UL*1024*1024)"
#
# BLKDEV_IOSIZE sets the default block size used in user block