Implement the nfs_access_cache variable, allowing us to set the timeout for

the NFS client's ACCESS cache.
This commit is contained in:
Mike Smith 1998-11-15 20:30:04 +00:00
parent 3acd0a4cb3
commit cda43ef612
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41185
8 changed files with 30 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -6,7 +6,7 @@
#
# All arguments must be in double or single quotes.
#
# $Id: rc.conf,v 1.60 1998/10/06 19:24:14 phk Exp $
# $Id: rc.conf,v 1.61 1998/10/08 18:47:29 des Exp $
##############################################################
### Important initial Boot-time options #####################
@ -58,6 +58,7 @@ amd_flags="-a /net -c 1800 -k i386 -d my.domain -l syslog /host /etc/amd.map"
amd_map_program="NO" # Can be set to "ypcat -k amd.master"
nfs_client_enable="NO" # This host is an NFS client (or NO).
nfs_client_flags="-n 4" # Flags to nfsiod (if enabled).
nfs_access_cache="2" # Client cache timeout in seconds or NO
nfs_server_enable="NO" # This host is an NFS server (or NO).
nfs_server_flags="-u -t -n 4" # Flags to nfsd (if enabled).
mountd_flags="-r" # Flags to mountd (if NFS server enabled).

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: rc.network,v 1.33 1998/10/06 19:24:14 phk Exp $
# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@ -258,6 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
if [ ! "X${nfs_access_cache}" = X ]; then
sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
fi
fi
if [ "X${amd_enable}" = X"YES" ]; then