Searched refs:NFS_FHSIZE (Results 1 – 7 of 7) sorted by relevance
/openbmc/u-boot/net/ |
H A D | nfs.c | 54 static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */ 300 memcpy(p, filefh, NFS_FHSIZE); in nfs_readlink_req() 301 p += (NFS_FHSIZE / 4); in nfs_readlink_req() 329 memcpy(p, dirfh, NFS_FHSIZE); in nfs_lookup_req() 330 p += (NFS_FHSIZE / 4); in nfs_lookup_req() 341 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */ in nfs_lookup_req() 342 memcpy(p, dirfh, NFS_FHSIZE); in nfs_lookup_req() 343 p += (NFS_FHSIZE / 4); in nfs_lookup_req() 369 memcpy(p, filefh, NFS_FHSIZE); in nfs_read_req() 370 p += (NFS_FHSIZE / 4); in nfs_read_req() [all …]
|
H A D | nfs.h | 29 #define NFS_FHSIZE 32 macro
|
/openbmc/linux/fs/nfsd/ |
H A D | nfsxdr.c | 63 p = xdr_inline_decode(xdr, NFS_FHSIZE); in svcxdr_decode_fhandle() 66 fh_init(fhp, NFS_FHSIZE); in svcxdr_decode_fhandle() 67 memcpy(&fhp->fh_handle.fh_raw, p, NFS_FHSIZE); in svcxdr_decode_fhandle() 68 fhp->fh_handle.fh_size = NFS_FHSIZE; in svcxdr_decode_fhandle() 78 p = xdr_reserve_space(xdr, NFS_FHSIZE); in svcxdr_encode_fhandle() 81 memcpy(p, &fhp->fh_handle.fh_raw, NFS_FHSIZE); in svcxdr_encode_fhandle()
|
H A D | nfsproc.c | 137 fh_init(&resp->fh, NFS_FHSIZE); in nfsd_proc_lookup() 289 fh_init(newfhp, NFS_FHSIZE); in nfsd_proc_create() 490 fh_init(&newfh, NFS_FHSIZE); in nfsd_proc_symlink() 522 fh_init(&resp->fh, NFS_FHSIZE); in nfsd_proc_mkdir()
|
H A D | nfsfh.c | 554 if (fhp->fh_maxsize < NFS_FHSIZE) in fh_compose()
|
H A D | nfsctl.c | 339 if (maxsize < NFS_FHSIZE) in write_filehandle()
|
/openbmc/linux/include/uapi/linux/ |
H A D | nfs.h | 20 #define NFS_FHSIZE 32 macro
|