diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2003-03-22 14:23:23 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2003-03-22 14:23:23 +0000 |
commit | 4c9fbbd687279f4a9422946f248d364833e48d20 (patch) | |
tree | b56a76b756d79588c4ce373b46e1fbd858ac66df /release | |
parent | ab0f83bd03691b807adbaff79c0d3fb17dd10e68 (diff) | |
download | src-4c9fbbd687279f4a9422946f248d364833e48d20.tar.gz src-4c9fbbd687279f4a9422946f248d364833e48d20.zip |
Go for the auto-tuned `maxusers'. This at least fixes
the ``panic: timeout table full'' on Alphas.
Tested by: wilko
Notes
Notes:
svn path=/head/; revision=112499
Diffstat (limited to 'release')
-rwxr-xr-x | release/alpha/dokern.sh | 4 | ||||
-rwxr-xr-x | release/amd64/dokern.sh | 4 | ||||
-rwxr-xr-x | release/i386/dokern.sh | 4 | ||||
-rwxr-xr-x | release/pc98/dokern.sh | 5 |
4 files changed, 0 insertions, 17 deletions
diff --git a/release/alpha/dokern.sh b/release/alpha/dokern.sh index b2ab69550c8d..3b11628a8905 100755 --- a/release/alpha/dokern.sh +++ b/release/alpha/dokern.sh @@ -54,11 +54,7 @@ sed \ -e '/ ums /d' \ -e '/ usb /d' \ -e '/ wb /d' \ - -e '/maxusers/d' \ -e 's/ident.*GENERIC/ident BOOTMFS/g' -# reset maxusers to something lower -echo "maxusers 2" - echo "options SCSI_NO_OP_STRINGS" echo "options SCSI_NO_SENSE_STRINGS" diff --git a/release/amd64/dokern.sh b/release/amd64/dokern.sh index 9d5b3f1b7ada..c91e46ea4d60 100755 --- a/release/amd64/dokern.sh +++ b/release/amd64/dokern.sh @@ -38,7 +38,6 @@ sed \ -e '/ ulpt /d' \ -e '/ urio /d' \ -e '/ uscanner /d' \ - -e '/maxusers/d' \ -e 's/ident.*GENERIC/ident BOOTMFS/g' echo "options NETGRAPH" @@ -47,8 +46,5 @@ echo "options NETGRAPH_PPPOE" echo "options NETGRAPH_SOCKET" echo "options NO_COMPAT_FREEBSD4" -# reset maxusers to something lower -echo "maxusers 5" - echo "options SCSI_NO_OP_STRINGS" echo "options SCSI_NO_SENSE_STRINGS" diff --git a/release/i386/dokern.sh b/release/i386/dokern.sh index 9d5b3f1b7ada..c91e46ea4d60 100755 --- a/release/i386/dokern.sh +++ b/release/i386/dokern.sh @@ -38,7 +38,6 @@ sed \ -e '/ ulpt /d' \ -e '/ urio /d' \ -e '/ uscanner /d' \ - -e '/maxusers/d' \ -e 's/ident.*GENERIC/ident BOOTMFS/g' echo "options NETGRAPH" @@ -47,8 +46,5 @@ echo "options NETGRAPH_PPPOE" echo "options NETGRAPH_SOCKET" echo "options NO_COMPAT_FREEBSD4" -# reset maxusers to something lower -echo "maxusers 5" - echo "options SCSI_NO_OP_STRINGS" echo "options SCSI_NO_SENSE_STRINGS" diff --git a/release/pc98/dokern.sh b/release/pc98/dokern.sh index ffb111cd86b7..537f65d8d997 100755 --- a/release/pc98/dokern.sh +++ b/release/pc98/dokern.sh @@ -12,7 +12,6 @@ fi if [ "${FDSIZE}" = "SMALL" ]; then sed -e 's/ident.*GENERIC/ident BOOTMFS/g' \ - -e '/maxusers/d' \ -e '/DEBUG/d' \ -e '/SOFTUPDATES/d' \ -e '/UFS_DIRHASH/d' \ @@ -78,7 +77,6 @@ sed -e 's/ident.*GENERIC/ident BOOTMFS/g' \ else sed -e 's/ident.*GENERIC/ident BOOTMFS/g' \ - -e '/maxusers/d' \ -e '/DEBUG/d' \ -e '/SOFTUPDATES/d' \ -e '/UFS_DIRHASH/d' \ @@ -125,8 +123,5 @@ echo "options NETGRAPH_PPPOE" echo "options NETGRAPH_SOCKET" echo "options NO_COMPAT_FREEBSD4" -# reset maxusers to something lower -echo "maxusers 5" - echo "options SCSI_NO_OP_STRINGS" echo "options SCSI_NO_SENSE_STRINGS" |