Home | History | Annotate | Download | only in engines

Lines Matching defs:recv_buf

160 	struct rdma_info_blk recv_buf;
197 if (wc->byte_len != sizeof(rd->recv_buf)) {
203 if (max_bs > ntohl(rd->recv_buf.max_bs)) {
206 ntohl(rd->recv_buf.max_bs), max_bs);
216 rd->rmt_nr = ntohl(rd->recv_buf.nr);
219 rd->rmt_us[i].buf = ntohll(rd->recv_buf.rmt_us[i].buf);
220 rd->rmt_us[i].rkey = ntohl(rd->recv_buf.rmt_us[i].rkey);
221 rd->rmt_us[i].size = ntohl(rd->recv_buf.rmt_us[i].size);
239 rd->rdma_protocol = ntohl(rd->recv_buf.mode);
246 if (max_bs < ntohl(rd->recv_buf.max_bs)) {
249 ntohl(rd->recv_buf.max_bs), max_bs);
490 rd->recv_mr = ibv_reg_mr(rd->pd, &rd->recv_buf, sizeof(rd->recv_buf),
493 log_err("fio: recv_buf reg_mr failed: %m\n");
507 rd->recv_sgl.addr = (uint64_t) (unsigned long)&rd->recv_buf;
508 rd->recv_sgl.length = sizeof(rd->recv_buf);