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