Home
last modified time | relevance | path

Searched refs:NFS_FHSIZE (Results 1 – 5 of 5) sorted by relevance

/linux-4.19.296/fs/nfsd/
Dnfsxdr.c31 fh_init(fhp, NFS_FHSIZE); in decode_fh()
32 memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE); in decode_fh()
33 fhp->fh_handle.fh_size = NFS_FHSIZE; in decode_fh()
37 return p + (NFS_FHSIZE >> 2); in decode_fh()
49 memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE); in encode_fh()
50 return p + (NFS_FHSIZE>> 2); in encode_fh()
Dnfsfh.c202 if (fh->fh_size != NFS_FHSIZE) in nfsd_set_fh_dentry()
562 if (fhp->fh_maxsize < NFS_FHSIZE) in fh_compose()
572 memset(&fhp->fh_handle.fh_base, 0, NFS_FHSIZE); in fh_compose()
573 fhp->fh_handle.fh_size = NFS_FHSIZE; in fh_compose()
Dnfsproc.c144 fh_init(&resp->fh, NFS_FHSIZE); in nfsd_proc_lookup()
291 fh_init(newfhp, NFS_FHSIZE); in nfsd_proc_create()
480 fh_init(&newfh, NFS_FHSIZE); in nfsd_proc_symlink()
509 fh_init(&resp->fh, NFS_FHSIZE); in nfsd_proc_mkdir()
Dnfsctl.c377 if (maxsize < NFS_FHSIZE) in write_filehandle()
/linux-4.19.296/include/uapi/linux/
Dnfs.h20 #define NFS_FHSIZE 32 macro