diff options
author | dm <dm@cvs.openbsd.org> | 1996-12-17 03:46:40 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-12-17 03:46:40 +0000 |
commit | 7e77de81db5ad5ee0d7455dfa9a016a680c5387b (patch) | |
tree | 8ce852bde705fcb343dc1752810bb2a41db23c9a /sys/nfs/nfsmount.h | |
parent | 5ab777dc75b17b54c14b6c1bdda9e4b3e9201bf9 (diff) |
NFS attribute cache timeout mount param
Diffstat (limited to 'sys/nfs/nfsmount.h')
-rw-r--r-- | sys/nfs/nfsmount.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/nfs/nfsmount.h b/sys/nfs/nfsmount.h index 12cae0aef94..290f83736b4 100644 --- a/sys/nfs/nfsmount.h +++ b/sys/nfs/nfsmount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsmount.h,v 1.3 1996/03/31 13:16:12 mickey Exp $ */ +/* $OpenBSD: nfsmount.h,v 1.4 1996/12/17 03:46:39 dm Exp $ */ /* $NetBSD: nfsmount.h,v 1.10 1996/02/18 11:54:03 fvdl Exp $ */ /* @@ -85,6 +85,10 @@ struct nfsmount { int nm_numuids; /* Number of nfsuid mappings */ TAILQ_HEAD(, nfsuid) nm_uidlruhead; /* Lists of nfsuid mappings */ LIST_HEAD(, nfsuid) nm_uidhashtbl[NFS_MUIDHASHSIZ]; + u_short nm_acregmin; /* Attr cache file recently modified */ + u_short nm_acregmax; /* ac file not recently modified */ + u_short nm_acdirmin; /* ac for dir recently modified */ + u_short nm_acdirmax; /* ac for dir not recently modified */ }; #ifdef _KERNEL |