Lines Matching defs:wr

47 	ibt_send_wr_t		wr;
82 "iser wr handle");
90 wr.wr_id = (ibt_wrid_t)(uintptr_t)iser_wr;
93 wr.wr_trans = IBT_RC_SRV;
94 wr.wr_opcode = IBT_WRC_SEND;
95 wr.wr_nds = 1;
96 wr.wr_sgl = &msg->msg_ds;
108 status = ibt_post_send(chan->ic_chanhdl, &wr, 1, NULL);
132 ibt_send_wr_t wr;
170 "allocate iser wr handle");
178 wr.wr_id = (ibt_wrid_t)(uintptr_t)iser_wr;
181 wr.wr_trans = IBT_RC_SRV;
182 wr.wr_opcode = IBT_WRC_SEND;
183 wr.wr_nds = 1;
184 wr.wr_sgl = &msg->msg_ds;
193 status = ibt_post_send(chan->ic_chanhdl, &wr, 1, NULL);
231 ibt_send_wr_t wr;
350 bzero(&wr, sizeof (wr));
356 "iser wr handle");
369 wr.wr_id = (ibt_wrid_t)(uintptr_t)iser_wr;
370 wr.wr_trans = IBT_RC_SRV;
371 wr.wr_opcode = IBT_WRC_SEND;
372 wr.wr_nds = 1;
373 wr.wr_sgl = &msg->msg_ds;
383 status = ibt_post_send(chan->ic_chanhdl, &wr, 1, NULL);
415 ibt_send_wr_t wr;
440 bzero(&wr, sizeof (ibt_send_wr_t));
441 wr.wr.rc.rcwr.rdma.rdma_raddr = reg_raddr + buf->idb_bufoffset;
442 wr.wr.rc.rcwr.rdma.rdma_rkey = reg_rkey;
451 "iser wr handle");
459 wr.wr_id = (ibt_wrid_t)(uintptr_t)iser_wr;
462 wr.wr_flags = IBT_WR_SEND_SIGNAL;
463 wr.wr_trans = IBT_RC_SRV;
464 wr.wr_opcode = IBT_WRC_RDMAW;
465 wr.wr_nds = 1;
466 wr.wr_sgl = &iser_buf->buf_ds;
469 bcopy(&wr, &iser_buf->buf_wr, sizeof (ibt_send_wr_t));
485 status = ibt_post_send(iser_chan->ic_chanhdl, &wr, 1, NULL);
517 ibt_send_wr_t wr;
542 bzero(&wr, sizeof (ibt_send_wr_t));
543 wr.wr.rc.rcwr.rdma.rdma_raddr = reg_raddr + buf->idb_bufoffset;
544 wr.wr.rc.rcwr.rdma.rdma_rkey = reg_rkey;
553 "iser wr handle");
561 wr.wr_id = (ibt_wrid_t)(uintptr_t)iser_wr;
564 wr.wr_flags = IBT_WR_SEND_SIGNAL;
565 wr.wr_trans = IBT_RC_SRV;
566 wr.wr_opcode = IBT_WRC_RDMAR;
567 wr.wr_nds = 1;
568 wr.wr_sgl = &iser_buf->buf_ds;
571 bcopy(&wr, &iser_buf->buf_wr, sizeof (ibt_send_wr_t));
587 status = ibt_post_send(iser_chan->ic_chanhdl, &wr, 1, NULL);