Lines Matching refs:fh
150 static inline int fh_want_write(struct svc_fh *fh) in fh_want_write() argument
154 if (fh->fh_want_write) in fh_want_write()
156 ret = mnt_want_write(fh->fh_export->ex_path.mnt); in fh_want_write()
158 fh->fh_want_write = true; in fh_want_write()
162 static inline void fh_drop_write(struct svc_fh *fh) in fh_drop_write() argument
164 if (fh->fh_want_write) { in fh_drop_write()
165 fh->fh_want_write = false; in fh_drop_write()
166 mnt_drop_write(fh->fh_export->ex_path.mnt); in fh_drop_write()
170 static inline __be32 fh_getattr(const struct svc_fh *fh, struct kstat *stat) in fh_getattr() argument
172 struct path p = {.mnt = fh->fh_export->ex_path.mnt, in fh_getattr()
173 .dentry = fh->fh_dentry}; in fh_getattr()