diff options
| author | Kenneth D. Merry <ken@FreeBSD.org> | 2002-07-11 04:15:53 +0000 |
|---|---|---|
| committer | Kenneth D. Merry <ken@FreeBSD.org> | 2002-07-11 04:15:53 +0000 |
| commit | 2c8f5a28bb570b78fa11b8e457e9b6624e3b7520 (patch) | |
| tree | 1beec09dd84133491c6ed6ff179c93f74423ba55 | |
| parent | dbf6d71cba87361f33e4801f8c5c00753df5f001 (diff) | |
Notes
| -rw-r--r-- | sys/conf/NOTES | 11 | ||||
| -rw-r--r-- | sys/conf/options | 4 |
2 files changed, 11 insertions, 4 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 4aeb7a468a88..d450040b2a32 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1684,6 +1684,15 @@ device fpa 1 # only works for Tigon II chips, and has no effect for Tigon I chips. options TI_JUMBO_HDRSPLIT +# These two options allow manipulating the mbuf cluster size and mbuf size, +# respectively. Be very careful with NIC driver modules when changing +# these from their default values, because that can potentially cause a +# mismatch between the mbuf size assumed by the kernel and the mbuf size +# assumed by a module. The only driver that currently has the ability to +# detect a mismatch is ti(4). +options MCLSHIFT=12 # mbuf cluster shift in bits, 12 == 4KB +options MSIZE=512 # mbuf size in bytes + # # ATM related options (Cranor version) # (note: this driver cannot be used with the HARP ATM stack) @@ -2269,8 +2278,6 @@ options MSGTQL=41 # Max number of messages in system options NBUF=512 # Number of buffer headers -options MSIZE=256 # mbuf size in bytes -options MCLSHIFT=12 # mbuf cluster shift in bits, 12 == 4KB options NMBCLUSTERS=1024 # Number of mbuf clusters options SCSI_NCR_DEBUG diff --git a/sys/conf/options b/sys/conf/options index b9ae0311c9c5..ef34058c62ce 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -407,11 +407,11 @@ DIAGNOSTIC opt_global.h ENABLE_VFS_IOOPT opt_global.h INVARIANT_SUPPORT opt_global.h INVARIANTS opt_global.h +MCLSHIFT opt_global.h +MSIZE opt_global.h REGRESSION opt_global.h RESTARTABLE_PANICS opt_global.h VFS_BIO_DEBUG opt_global.h -MSIZE opt_global.h -MCLSHIFT opt_global.h # These are VM related options VM_KMEM_SIZE opt_vm.h |
