diff options
author | mav <mav@FreeBSD.org> | 2014-02-17 20:04:16 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2014-02-17 20:04:16 +0000 |
commit | 3a850f3c1047e80ff8f260f5a9dea5e7041ff079 (patch) | |
tree | b552a7d3b0bb36219a024dae5158fd29718ff308 /etc | |
parent | 489e9199469312bfa8a4485ea401738f13296942 (diff) | |
download | FreeBSD-src-3a850f3c1047e80ff8f260f5a9dea5e7041ff079.zip FreeBSD-src-3a850f3c1047e80ff8f260f5a9dea5e7041ff079.tar.gz |
MFC r260486:
Remove very low default limit of 4 nfsd threads. nfsd's own default is
8 * hw.ncpu, that sounds more appropriate for these SMP/NCQ/... days.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/defaults/rc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index a34f0c1..1ee6324 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -315,7 +315,7 @@ nfs_client_enable="NO" # This host is an NFS client (or NO). nfs_access_cache="60" # Client cache timeout in seconds nfs_server_enable="NO" # This host is an NFS server (or NO). oldnfs_server_enable="NO" # Run the old NFS server (YES/NO). -nfs_server_flags="-u -t -n 4" # Flags to nfsd (if enabled). +nfs_server_flags="-u -t" # Flags to nfsd (if enabled). mountd_enable="NO" # Run mountd (or NO). mountd_flags="-r" # Flags to mountd (if NFS server enabled). weak_mountd_authentication="NO" # Allow non-root mount requests to be served. |