Home
last modified time | relevance | path

Searched refs:fsidv (Results 1 – 3 of 3) sorted by relevance

/linux/fs/nfsd/
H A Dnfsfh.h147 static inline void mk_fsid(int vers, u32 *fsidv, dev_t dev, ino_t ino, in mk_fsid() argument
153 fsidv[0] = (__force __u32)htonl((MAJOR(dev)<<16) | in mk_fsid()
155 fsidv[1] = ino_t_to_u32(ino); in mk_fsid()
158 fsidv[0] = fsid; in mk_fsid()
161 fsidv[0] = (__force __u32)htonl(MAJOR(dev)); in mk_fsid()
162 fsidv[1] = (__force __u32)htonl(MINOR(dev)); in mk_fsid()
163 fsidv[2] = ino_t_to_u32(ino); in mk_fsid()
167 fsidv[0] = new_encode_dev(dev); in mk_fsid()
168 fsidv[1] = ino_t_to_u32(ino); in mk_fsid()
174 fsidv[0] = ino_t_to_u32(ino); in mk_fsid()
[all …]
H A Dexport.c1650 u32 *fsidv, struct cache_req *reqp)
1660 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
1772 u32 *fsidv, struct cache_req *reqp)
1776 struct svc_expkey *ek = exp_find_key(nn->svc_expkey_cache, clp, fsid_type, fsidv, reqp);
1958 * @fsidv: The actual fsid to look up in the context of either client.
1960 * Perform a lookup for @cl/@fsidv in the given @net for an export. If
1968 int fsid_type, u32 *fsidv)
1978 exp = exp_find(cd, cl, fsid_type, fsidv, reqp);
1990 gssexp = exp_find(cd, gsscl, fsid_type, fsidv, reqp);
2017 u32 fsidv[
959 exp_find_key(struct cache_detail * cd,struct auth_domain * clp,int fsid_type,u32 * fsidv,struct cache_req * reqp) exp_find_key() argument
1081 exp_find(struct cache_detail * cd,struct auth_domain * clp,int fsid_type,u32 * fsidv,struct cache_req * reqp) exp_find() argument
1277 rqst_exp_find(struct cache_req * reqp,struct net * net,struct auth_domain * cl,struct auth_domain * gsscl,int fsid_type,u32 * fsidv) rqst_exp_find() argument
1326 u32 fsidv[2]; rqst_find_fsidzero_export() local
[all...]
H A Dexport.h137 int fsid_type, u32 *fsidv); in exp_get()