diff options
author | tanimura <tanimura@FreeBSD.org> | 2001-01-31 04:07:34 +0000 |
---|---|---|
committer | tanimura <tanimura@FreeBSD.org> | 2001-01-31 04:07:34 +0000 |
commit | ee1ef07885218224022ee309bbc19ae619441683 (patch) | |
tree | 318fff937ea19669cd6f476dfe9820acbe167181 | |
parent | aa95571c98d393db5fb26cc9ba420d16277eb1d4 (diff) | |
download | FreeBSD-src-ee1ef07885218224022ee309bbc19ae619441683.zip FreeBSD-src-ee1ef07885218224022ee309bbc19ae619441683.tar.gz |
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.
-rw-r--r-- | sys/conf/NOTES | 8 | ||||
-rw-r--r-- | sys/i386/conf/NOTES | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 46973b6..543b46f 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -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 diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index 46973b6..543b46f 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -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 |