Lines Matching refs:rlen
611 int rlen; in nfs_readlink_reply() local
635 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]); in nfs_readlink_reply()
644 rlen); in nfs_readlink_reply()
645 nfs_path[pathlen + rlen] = 0; in nfs_readlink_reply()
649 rlen); in nfs_readlink_reply()
650 nfs_path[rlen] = 0; in nfs_readlink_reply()
658 int rlen; in nfs_read_reply() local
688 rlen = ntohl(rpc_pkt.u.reply.data[18]); in nfs_read_reply()
695 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]); in nfs_read_reply()
704 if (store_block(data_ptr, nfs_offset, rlen)) in nfs_read_reply()
707 return rlen; in nfs_read_reply()
730 int rlen; in nfs_handler() local
824 rlen = nfs_read_reply(pkt, len); in nfs_handler()
826 if (rlen > 0) { in nfs_handler()
827 nfs_offset += rlen; in nfs_handler()
829 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) { in nfs_handler()
834 if (!rlen) in nfs_handler()
836 if (rlen < 0) in nfs_handler()
837 debug("NFS READ error (%d)\n", rlen); in nfs_handler()