Searched defs:nfsnode (Results 1 – 3 of 3) sorted by relevance
93 struct nfsnode { struct94 struct mtx n_mtx; /* Protects all of these members */95 struct lock n_excl; /* Exclusive helper for shared97 u_quad_t n_size; /* Current size of file */98 u_quad_t n_brev; /* Modify rev when cached */99 u_quad_t n_lrev; /* Modify rev for lease */100 struct nfsvattr n_vattr; /* Vnode attribute cache */101 time_t n_attrstamp; /* Attr. cache timestamp */102 struct nfs_accesscache n_accesscache[NFS_ACCESSCACHESIZE];103 struct timespec n_mtime; /* Prev modify time. */[all …]
97 struct nfsnode { struct98 struct mtx n_mtx; /* Protects all of these members */99 u_quad_t n_size; /* Current size of file */100 u_quad_t n_brev; /* Modify rev when cached */101 u_quad_t n_lrev; /* Modify rev for lease */102 struct vattr n_vattr; /* Vnode attribute cache */103 time_t n_attrstamp; /* Attr. cache timestamp */104 struct nfs_accesscache n_accesscache[NFS_ACCESSCACHESIZE];105 struct timespec n_mtime; /* Prev modify time. */106 nfsfh_t *n_fhp; /* NFS File Handle */[all …]
141 struct nfsnode nfsnode; in nfs_filestat() local