Searched refs:decode_fh (Results  1 – 5 of 5) sorted by relevance
| /Linux-v5.4/fs/nfsd/ | 
| D | nfsxdr.c | 29 decode_fh(__be32 *p, struct svc_fh *fhp)  in decode_fh()  function43 	return decode_fh(p, fhp);  in nfs2svc_decode_fh()
 206 	p = decode_fh(p, &args->fh);  in nfssvc_decode_fhandle()
 217 	p = decode_fh(p, &args->fh);  in nfssvc_decode_sattrargs()
 230 	if (!(p = decode_fh(p, &args->fh))  in nfssvc_decode_diropargs()
 243 	p = decode_fh(p, &args->fh);  in nfssvc_decode_readargs()
 276 	p = decode_fh(p, &args->fh);  in nfssvc_decode_writeargs()
 320 	if (   !(p = decode_fh(p, &args->fh))  in nfssvc_decode_createargs()
 333 	if (!(p = decode_fh(p, &args->ffh))  in nfssvc_decode_renameargs()
 335 	 || !(p = decode_fh(p, &args->tfh))  in nfssvc_decode_renameargs()
 [all …]
 
 | 
| D | nfs3xdr.c | 50 decode_fh(__be32 *p, struct svc_fh *fhp)  in decode_fh()  function66 	return decode_fh(p, fhp);  in nfs3svc_decode_fh()
 316 	p = decode_fh(p, &args->fh);  in nfs3svc_decode_fhandle()
 327 	p = decode_fh(p, &args->fh);  in nfs3svc_decode_sattrargs()
 346 	if (!(p = decode_fh(p, &args->fh))  in nfs3svc_decode_diropargs()
 358 	p = decode_fh(p, &args->fh);  in nfs3svc_decode_accessargs()
 374 	p = decode_fh(p, &args->fh);  in nfs3svc_decode_readargs()
 405 	p = decode_fh(p, &args->fh);  in nfs3svc_decode_writeargs()
 453 	if (!(p = decode_fh(p, &args->fh))  in nfs3svc_decode_createargs()
 478 	if (!(p = decode_fh(p, &args->fh)) ||  in nfs3svc_decode_mkdirargs()
 [all …]
 
 | 
| /Linux-v5.4/fs/nfs/ | 
| D | callback_xdr.c | 87 static __be32 decode_fh(struct xdr_stream *xdr, struct nfs_fh *fh)  in decode_fh()  function182 	status = decode_fh(xdr, &args->fh);  in decode_getattr_args()
 202 	return decode_fh(xdr, &args->fh);  in decode_recall_args()
 234 		status = decode_fh(xdr, &args->cbl_fh);  in decode_layoutrecall_args()
 517 	status = decode_fh(xdr, &args->cbnl_fh);  in decode_notify_lock_args()
 561 	status = decode_fh(xdr, &args->coa_fh);  in decode_offload_args()
 
 | 
| /Linux-v5.4/Documentation/filesystems/nfs/ | 
| D | exporting.rst | 160 The decode_fh routine should not depend on the stated size that is164 indicates the decode_fh how much of the filehandle is valid, and how
 
 | 
| /Linux-v5.4/Documentation/filesystems/ | 
| D | porting.rst | 163 Briefly it allows for the definition of decode_fh and encode_fh operations165 a standard helper function for decode_fh, and provide file-system specific
 
 |