Lines Matching full:remaining

57  * the svc_rqst will be recycled as soon as sendto returns. Remaining
363 * @remaining: remaining bytes of the payload left in the Write chunk
372 unsigned int *remaining) in svc_rdma_encode_write_segment() argument
385 if (*remaining < length) { in svc_rdma_encode_write_segment()
387 length = *remaining; in svc_rdma_encode_write_segment()
388 *remaining = 0; in svc_rdma_encode_write_segment()
391 *remaining -= length; in svc_rdma_encode_write_segment()
403 * @remaining: size in bytes of the payload in the Write chunk
416 unsigned int remaining) in svc_rdma_encode_write_chunk() argument
422 trace_svcrdma_encode_write_chunk(remaining); in svc_rdma_encode_write_chunk()
437 ret = svc_rdma_encode_write_segment(src, sctxt, &remaining); in svc_rdma_encode_write_chunk()
456 * Remaining chunks are returned unused.
575 unsigned int remaining; in svc_rdma_pull_up_needed() local
579 remaining = xdr->page_len; in svc_rdma_pull_up_needed()
580 while (remaining) { in svc_rdma_pull_up_needed()
582 remaining -= min_t(u32, PAGE_SIZE - pageoff, in svc_rdma_pull_up_needed()
583 remaining); in svc_rdma_pull_up_needed()
631 unsigned int len, remaining; in svc_rdma_pull_up_reply_msg() local
637 remaining = xdr->page_len; in svc_rdma_pull_up_reply_msg()
638 while (remaining) { in svc_rdma_pull_up_reply_msg()
639 len = min_t(u32, PAGE_SIZE - pageoff, remaining); in svc_rdma_pull_up_reply_msg()
642 remaining -= len; in svc_rdma_pull_up_reply_msg()
673 unsigned int len, remaining; in svc_rdma_map_reply_msg() local
723 remaining = xdr->page_len; in svc_rdma_map_reply_msg()
724 while (remaining) { in svc_rdma_map_reply_msg()
725 len = min_t(u32, PAGE_SIZE - page_off, remaining); in svc_rdma_map_reply_msg()
733 remaining -= len; in svc_rdma_map_reply_msg()