Lines Matching refs:fh
121 static inline int fh_want_write(struct svc_fh *fh) in fh_want_write() argument
125 if (fh->fh_want_write) in fh_want_write()
127 ret = mnt_want_write(fh->fh_export->ex_path.mnt); in fh_want_write()
129 fh->fh_want_write = true; in fh_want_write()
133 static inline void fh_drop_write(struct svc_fh *fh) in fh_drop_write() argument
135 if (fh->fh_want_write) { in fh_drop_write()
136 fh->fh_want_write = false; in fh_drop_write()
137 mnt_drop_write(fh->fh_export->ex_path.mnt); in fh_drop_write()
141 static inline __be32 fh_getattr(struct svc_fh *fh, struct kstat *stat) in fh_getattr() argument
143 struct path p = {.mnt = fh->fh_export->ex_path.mnt, in fh_getattr()
144 .dentry = fh->fh_dentry}; in fh_getattr()