Lines Matching refs:filefh3_length
56 static int filefh3_length; /* (variable) length of filefh when NFSv3 */ variable
303 *p++ = htonl(filefh3_length); in nfs_readlink_req()
304 memcpy(p, filefh, filefh3_length); in nfs_readlink_req()
305 p += (filefh3_length / 4); in nfs_readlink_req()
375 *p++ = htonl(filefh3_length); in nfs_read_req()
376 memcpy(p, filefh, filefh3_length); in nfs_read_req()
377 p += (filefh3_length / 4); in nfs_read_req()
571 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]); in nfs_lookup_reply()
572 if (filefh3_length > NFS3_FHSIZE) in nfs_lookup_reply()
573 filefh3_length = NFS3_FHSIZE; in nfs_lookup_reply()
574 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length); in nfs_lookup_reply()