Home
last modified time | relevance | path

Searched refs:fh1 (Results 1 – 4 of 4) sorted by relevance

/fs/nfsd/
Dnfsfh.h196 static inline bool fh_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2) in fh_match() argument
198 if (fh1->fh_size != fh2->fh_size) in fh_match()
200 if (memcmp(fh1->fh_base.fh_pad, fh2->fh_base.fh_pad, fh1->fh_size) != 0) in fh_match()
205 static inline bool fh_fsid_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2) in fh_fsid_match() argument
207 if (fh1->fh_fsid_type != fh2->fh_fsid_type) in fh_fsid_match()
209 if (memcmp(fh1->fh_fsid, fh2->fh_fsid, key_len(fh1->fh_fsid_type)) != 0) in fh_fsid_match()
Dxdr3.h242 struct svc_fh fh1; member
Dnfs3xdr.c1169 fh_put(&resp->fh1); in nfs3svc_release_fhandle2()
/fs/notify/fanotify/
Dfanotify.c31 static bool fanotify_fh_equal(struct fanotify_fh *fh1, in fanotify_fh_equal() argument
34 if (fh1->type != fh2->type || fh1->len != fh2->len) in fanotify_fh_equal()
37 return !fh1->len || in fanotify_fh_equal()
38 !memcmp(fanotify_fh_buf(fh1), fanotify_fh_buf(fh2), fh1->len); in fanotify_fh_equal()