diff options
author | jmg <jmg@FreeBSD.org> | 1998-06-30 03:01:37 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 1998-06-30 03:01:37 +0000 |
commit | 0e50288276d8ff2dfaeb04fd409010e684eeb5ab (patch) | |
tree | 54b9314f4f3252a682e1cc8be7fa4bbcbde43dd1 /sys/nfsserver/nfs.h | |
parent | df6e9974fcd1a7e7d25c8ec26843c5efbf622c84 (diff) | |
download | FreeBSD-src-0e50288276d8ff2dfaeb04fd409010e684eeb5ab.zip FreeBSD-src-0e50288276d8ff2dfaeb04fd409010e684eeb5ab.tar.gz |
convert some nfs tunables to options, these are:
NFS_MINATTRTIMO VREG attrib cache timeout in sec
NFS_MAXATTRTIMO
NFS_MINDIRATTRTIMO VDIR attrib cache timeout in sec
NFS_MAXDIRATTRTIMO
NFS_GATHERDELAY Default write gather delay (msec)
NFS_UIDHASHSIZ Tune the size of nfssvc_sock with this
NFS_WDELAYHASHSIZ and with this
NFS_MUIDHASHSIZ Tune the size of nfsmount with this
NFS_NOSERVER (already documented in LINT)
NFS_DEBUG turn on NFS debugging
also, because NFS_ROOT is used by very different files, it has been
renamed to opt_nfsroot.h instead of the old opt_nfs.h....
Diffstat (limited to 'sys/nfsserver/nfs.h')
-rw-r--r-- | sys/nfsserver/nfs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index 784df74..f4c6dc1 100644 --- a/sys/nfsserver/nfs.h +++ b/sys/nfsserver/nfs.h @@ -34,12 +34,14 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.4 (Berkeley) 5/1/95 - * $Id: nfs.h,v 1.39 1998/05/31 19:49:28 peter Exp $ + * $Id: nfs.h,v 1.40 1998/05/31 20:08:51 peter Exp $ */ #ifndef _NFS_NFS_H_ #define _NFS_NFS_H_ +#include "opt_nfs.h" + /* * Tunable constants for nfs */ |