Home
last modified time | relevance | path

Searched refs:byte_count (Results 1 – 6 of 6) sorted by relevance

/net/sunrpc/xprtrdma/
Dsvc_rdma_recvfrom.c59 u32 byte_count) in rdma_build_arg_xdr() argument
72 rqstp->rq_arg.head[0].iov_len = min(byte_count, ctxt->sge[0].length); in rdma_build_arg_xdr()
73 rqstp->rq_arg.len = byte_count; in rdma_build_arg_xdr()
74 rqstp->rq_arg.buflen = byte_count; in rdma_build_arg_xdr()
77 bc = byte_count - rqstp->rq_arg.head[0].iov_len; in rdma_build_arg_xdr()
99 != byte_count); in rdma_build_arg_xdr()
100 BUG_ON(rqstp->rq_arg.len != byte_count); in rdma_build_arg_xdr()
135 int byte_count) in map_read_chunks() argument
161 while (byte_count) { in map_read_chunks()
173 byte_count -= sge_bytes; in map_read_chunks()
[all …]
Dsvc_rdma_marshal.c78 int *ch_count, int *byte_count) in svc_rdma_rcl_chunk_counts() argument
81 *byte_count = 0; in svc_rdma_rcl_chunk_counts()
84 *byte_count = *byte_count + ntohl(ch->rc_target.rs_length); in svc_rdma_rcl_chunk_counts()
Dsvc_rdma_sendto.c544 int byte_count) in send_reply() argument
588 for (sge_no = 1; byte_count && sge_no < vec->count; sge_no++) { in send_reply()
590 sge_bytes = min_t(size_t, vec->sge[sge_no].iov_len, byte_count); in send_reply()
591 byte_count -= sge_bytes; in send_reply()
609 BUG_ON(byte_count != 0); in send_reply()
/net/openvswitch/
Dflow.h108 u64 byte_count; /* Number of bytes matched. */ member
Ddatapath.c691 flow->byte_count = 0; in clear_stats()
892 stats.n_bytes = flow->byte_count; in ovs_flow_cmd_fill_info()
Dflow.c196 flow->byte_count += skb->len; in ovs_flow_used()