Lines Matching defs:nfsnode
104 struct nfsnode { struct
106 u_quad_t n_size; /* Current size of file */
107 u_quad_t n_brev; /* Modify rev when cached */
108 struct vattr n_vattr; /* Vnode attribute cache */
109 time_t n_attrstamp; /* Attr. cache timestamp */
110 u_int32_t n_mode; /* ACCESS mode cache */
111 uid_t n_modeuid; /* credentials having mode */
112 time_t n_modestamp; /* mode cache timestamp */
113 time_t n_mtime; /* Last known modified time */
114 time_t n_ctime; /* Prev create time. */
115 time_t n_expiry; /* Lease expiry time */
116 nfsfh_t *n_fhp; /* NFS File Handle */
117 struct ucred *n_rucred;
118 struct ucred *n_wucred;
119 struct vnode *n_vnode; /* associated vnode */
120 struct lockf n_lockf; /* Locking record of file */
121 int n_error; /* Save write error value */
122 union {
125 } n_un1;
126 union {
129 } n_un2;
130 union {
133 } n_un3;
134 short n_fhsize; /* size in bytes, of fh */
135 short n_flag; /* Flag for locking.. */
136 nfsfh_t n_fh; /* Small File Handle */
137 struct lock n_rslock;