Home
last modified time | relevance | path

Searched refs:send_flags (Results 1 – 25 of 45) sorted by relevance

12

/freebsd/contrib/ofed/librdmacm/examples/
H A Drdma_client.c44 static int send_flags; variable
72 send_flags = IBV_SEND_INLINE; in run()
88 if ((send_flags & IBV_SEND_INLINE) == 0) { in run()
109 ret = rdma_post_send(id, NULL, send_msg, 16, send_mr, send_flags); in run()
130 if ((send_flags & IBV_SEND_INLINE) == 0) in run()
H A Drdma_server.c43 static int send_flags; variable
96 send_flags = IBV_SEND_INLINE; in run()
107 if ((send_flags & IBV_SEND_INLINE) == 0) { in run()
134 ret = rdma_post_send(id, NULL, send_msg, 16, send_mr, send_flags); in run()
149 if ((send_flags & IBV_SEND_INLINE) == 0) in run()
H A Drdma_xclient.c65 wr.send_flags = IBV_SEND_INLINE; in post_send()
/freebsd/contrib/ofed/librdmacm/
H A Drdma_verbs.h126 wr.send_flags = flags; in rdma_post_sendv()
142 wr.send_flags = flags; in rdma_post_readv()
160 wr.send_flags = flags; in rdma_post_writev()
243 wr.send_flags = flags; in rdma_post_ud_send()
/freebsd/contrib/ofed/libcxgb4/
H A Dqp.c167 if (wr->send_flags & IBV_SEND_SOLICITED) in build_rdma_send()
179 if (wr->send_flags & IBV_SEND_INLINE) { in build_rdma_send()
220 if (wr->send_flags & IBV_SEND_INLINE) { in build_rdma_write()
344 if (wr->send_flags & IBV_SEND_SOLICITED) in c4iw_post_send()
346 if (wr->send_flags & IBV_SEND_SIGNALED || qhp->sq_sig_all) in c4iw_post_send()
352 if (wr->send_flags & IBV_SEND_FENCE) in c4iw_post_send()
388 swsqe->signaled = (wr->send_flags & IBV_SEND_SIGNALED) || in c4iw_post_send()
/freebsd/sys/ofed/include/rdma/
H A Drdmavt_qp.h500 wqe->wr.send_flags |= RVT_SEND_RESERVE_USED; in rvt_qp_wqe_reserve()
523 if (unlikely(wqe->wr.send_flags & RVT_SEND_RESERVE_USED)) { in rvt_qp_wqe_unreserve()
524 wqe->wr.send_flags &= ~RVT_SEND_RESERVE_USED; in rvt_qp_wqe_unreserve()
/freebsd/contrib/ofed/libmlx4/
H A Dqp.c256 (wr->send_flags & IBV_SEND_SIGNALED ? in mlx4_post_send()
258 (wr->send_flags & IBV_SEND_SOLICITED ? in mlx4_post_send()
337 if (wr->send_flags & IBV_SEND_IP_CSUM) { in mlx4_post_send()
352 if (wr->send_flags & IBV_SEND_IP_CSUM) { in mlx4_post_send()
367 if (wr->send_flags & IBV_SEND_INLINE && wr->num_sge) { in mlx4_post_send()
443 ctrl->fence_size = (wr->send_flags & IBV_SEND_FENCE ? in mlx4_post_send()
/freebsd/contrib/ofed/libibverbs/examples/
H A Duc_pingpong.c66 int send_flags; member
313 ctx->send_flags = IBV_SEND_SIGNALED; in pp_init_ctx()
381 ctx->send_flags |= IBV_SEND_INLINE; in pp_init_ctx()
507 .send_flags = ctx->send_flags, in pp_post_send()
H A Dud_pingpong.c67 int send_flags; member
309 ctx->send_flags = IBV_SEND_SIGNALED; in pp_init_ctx()
393 ctx->send_flags |= IBV_SEND_INLINE; in pp_init_ctx()
524 .send_flags = ctx->send_flags, in pp_post_send()
H A Drc_pingpong.c74 int send_flags; member
341 ctx->send_flags = IBV_SEND_SIGNALED; in pp_init_ctx()
451 ctx->send_flags |= IBV_SEND_INLINE; in pp_init_ctx()
577 .send_flags = ctx->send_flags, in pp_post_send()
H A Dsrq_pingpong.c69 int send_flags; member
364 ctx->send_flags = IBV_SEND_SIGNALED; in pp_init_ctx()
446 ctx->send_flags |= IBV_SEND_INLINE; in pp_init_ctx()
587 .send_flags = ctx->send_flags, in pp_post_send()
/freebsd/contrib/ofed/libmlx5/
H A Dqp.c667 if (wr->send_flags & IBV_SEND_FENCE) in _mlx5_post_send()
677 (wr->send_flags & IBV_SEND_SIGNALED ? in _mlx5_post_send()
679 (wr->send_flags & IBV_SEND_SOLICITED ? in _mlx5_post_send()
820 if (wr->send_flags & IBV_SEND_IP_CSUM) { in _mlx5_post_send()
856 if (wr->send_flags & IBV_SEND_INLINE && wr->num_sge) { in _mlx5_post_send()
1023 wr.send_flags = mw_bind->send_flags; in mlx5_bind_mw()
/freebsd/contrib/ofed/libirdma/
H A Dirdma_uverbs.c319 wr.send_flags = mw_bind->send_flags; in irdma_ubind_mw()
1684 if ((ib_wr->send_flags & IBV_SEND_SIGNALED) || in irdma_upost_send()
1687 if (ib_wr->send_flags & IBV_SEND_FENCE) in irdma_upost_send()
1704 if (ib_wr->send_flags & IBV_SEND_SOLICITED) in irdma_upost_send()
1709 if (ib_wr->send_flags & IBV_SEND_SOLICITED) in irdma_upost_send()
1726 if (ib_wr->send_flags & IBV_SEND_INLINE) in irdma_upost_send()
1741 if (ib_wr->send_flags & IBV_SEND_SOLICITED) in irdma_upost_send()
1750 if (ib_wr->send_flags & IBV_SEND_INLINE) in irdma_upost_send()
/freebsd/sys/dev/mthca/
H A Dmthca_qp.c1525 sqp->ud_header.bth.solicited_event = !!(wr->wr.send_flags & IB_SEND_SOLICITED); in build_mlx_header()
1656 ((wr->send_flags & IB_SEND_SIGNALED) ? in mthca_tavor_post_send()
1658 ((wr->send_flags & IB_SEND_SOLICITED) ? in mthca_tavor_post_send()
1773 ((wr->send_flags & IB_SEND_FENCE) ? in mthca_tavor_post_send()
1779 f0 = wr->send_flags & IB_SEND_FENCE ? in mthca_tavor_post_send()
1995 ((wr->send_flags & IB_SEND_SIGNALED) ? in mthca_arbel_post_send()
1997 ((wr->send_flags & IB_SEND_SOLICITED) ? in mthca_arbel_post_send()
1999 ((wr->send_flags & IB_SEND_IP_CSUM) ? in mthca_arbel_post_send()
2114 ((wr->send_flags & IB_SEND_FENCE) ? in mthca_arbel_post_send()
2120 f0 = wr->send_flags & IB_SEND_FENCE ? in mthca_arbel_post_send()
/freebsd/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_mr.c608 umrwr->wr.send_flags = 0; in prep_umr_reg_wqe()
619 umrwr->wr.send_flags = MLX5_IB_SEND_UMR_UNREG | MLX5_IB_SEND_UMR_FAIL_IF_FREE; in prep_umr_unreg_wqe()
830 wr.wr.send_flags = MLX5_IB_SEND_UMR_FAIL_IF_FREE | in mlx5_ib_update_mtt()
1076 umrwr.wr.send_flags = MLX5_IB_SEND_UMR_FAIL_IF_FREE; in rereg_umr()
1086 umrwr.wr.send_flags |= MLX5_IB_SEND_UMR_UPDATE_TRANSLATION; in rereg_umr()
1094 umrwr.wr.send_flags |= MLX5_IB_SEND_UMR_UPDATE_PD; in rereg_umr()
1099 umrwr.wr.send_flags |= MLX5_IB_SEND_UMR_UPDATE_ACCESS; in rereg_umr()
H A Dmlx5_ib_qp.c3067 if (wr->send_flags & IB_SEND_IP_CSUM) in set_eth_seg()
3278 if (wr->send_flags & MLX5_IB_SEND_UMR_FAIL_IF_FREE) in set_reg_umr_segment()
3283 if (!(wr->send_flags & MLX5_IB_SEND_UMR_UNREG)) { in set_reg_umr_segment()
3285 if (wr->send_flags & MLX5_IB_SEND_UMR_UPDATE_MTT) { in set_reg_umr_segment()
3290 if (wr->send_flags & MLX5_IB_SEND_UMR_UPDATE_TRANSLATION) in set_reg_umr_segment()
3292 if (wr->send_flags & MLX5_IB_SEND_UMR_UPDATE_ACCESS) in set_reg_umr_segment()
3294 if (wr->send_flags & MLX5_IB_SEND_UMR_UPDATE_PD) in set_reg_umr_segment()
3348 if (wr->send_flags & MLX5_IB_SEND_UMR_UNREG) { in set_reg_mkey_segment()
3354 if (!(wr->send_flags & MLX5_IB_SEND_UMR_UPDATE_MTT)) { in set_reg_mkey_segment()
3770 if (unlikely(wr->wr.send_flags & IB_SEND_INLINE)) { in set_reg_wr()
[all …]
H A Dmlx5_ib_gsi.c34 int send_flags; member
83 wr->send_flags & IB_SEND_SIGNALED) in generate_completions()
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_tx.c143 tx_wr.send_flags = IB_SEND_SIGNALED; in sdp_post_send()
145 tx_wr.send_flags |= IB_SEND_SOLICITED; in sdp_post_send()
H A Dsdp_zcopy.c531 wr.send_flags = 0; in sdp_post_rdma_read()
544 wr.send_flags = IB_SEND_SIGNALED; in sdp_post_rdma_read()
/freebsd/sys/dev/cxgbe/iw_cxgbe/
H A Dqp.c419 if (wr->send_flags & IB_SEND_SOLICITED) in build_rdma_send()
428 if (wr->send_flags & IB_SEND_SOLICITED) in build_rdma_send()
445 if (wr->send_flags & IB_SEND_INLINE) { in build_rdma_send()
488 if (wr->send_flags & IB_SEND_INLINE) { in build_rdma_write()
815 if (wr->send_flags & IB_SEND_SOLICITED) in c4iw_post_send()
817 if (wr->send_flags & IB_SEND_SIGNALED || qhp->sq_sig_all) in c4iw_post_send()
823 if (wr->send_flags & IB_SEND_FENCE) in c4iw_post_send()
876 if (wr->send_flags & IB_SEND_FENCE) in c4iw_post_send()
894 swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED) || in c4iw_post_send()
/freebsd/sys/dev/bnxt/bnxt_re/
H A Dib_verbs.c2910 switch (wr->send_flags) { in bnxt_re_build_raw_send()
2982 if (wr->send_flags & IB_SEND_SOLICITED) in bnxt_re_build_qp1_send()
3232 if (wr->send_flags & IB_SEND_SIGNALED) in bnxt_re_build_send_wqe()
3234 if (wr->send_flags & IB_SEND_FENCE) in bnxt_re_build_send_wqe()
3236 if (wr->send_flags & IB_SEND_SOLICITED) in bnxt_re_build_send_wqe()
3238 if (wr->send_flags & IB_SEND_INLINE) in bnxt_re_build_send_wqe()
3264 if (wr->send_flags & IB_SEND_SIGNALED) in bnxt_re_build_rdma_wqe()
3266 if (wr->send_flags & IB_SEND_FENCE) in bnxt_re_build_rdma_wqe()
3268 if (wr->send_flags & IB_SEND_SOLICITED) in bnxt_re_build_rdma_wqe()
3270 if (wr->send_flags & IB_SEND_INLINE) in bnxt_re_build_rdma_wqe()
[all …]
/freebsd/contrib/ofed/libibverbs/
H A Dcompat-1_0.c89 int send_flags; member
441 real_wr->send_flags = w->send_flags; in post_send_wrapper_1_0()
/freebsd/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_verbs.c224 priv->tx_wr.wr.send_flags = IB_SEND_SIGNALED; in ipoib_transport_dev_init()
/freebsd/sys/dev/irdma/
H A Dirdma_verbs.c2463 if ((ib_wr->send_flags & IB_SEND_SIGNALED) || iwqp->sig_all) in irdma_post_send()
2465 if (ib_wr->send_flags & IB_SEND_FENCE) in irdma_post_send()
2481 if (ib_wr->send_flags & IB_SEND_SOLICITED) in irdma_post_send()
2486 if (ib_wr->send_flags & IB_SEND_SOLICITED) in irdma_post_send()
2503 if (ib_wr->send_flags & IB_SEND_INLINE) in irdma_post_send()
2518 if (ib_wr->send_flags & IB_SEND_SOLICITED) in irdma_post_send()
2527 if (ib_wr->send_flags & IB_SEND_INLINE) in irdma_post_send()
2578 stag_info.local_fence = ib_wr->send_flags & IB_SEND_FENCE; in irdma_post_send()
/freebsd/sys/dev/qlnx/qlnxr/
H A Dqlnxr_cm.c586 udh->bth.solicited_event = !!(swr->send_flags & IB_SEND_SOLICITED); in qlnxr_gsi_build_header()
715 !!(wr->send_flags & IB_SEND_SIGNALED); in qlnxr_gsi_post_send()

12