Home
last modified time | relevance | path

Searched refs:srq_type (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_uverbs_std_types.c150 enum ib_srq_type srq_type = srq->srq_type; in uverbs_free_srq() local
157 if (srq_type == IB_SRQT_XRC) { in uverbs_free_srq()
H A Dib_verbs.c720 srq->srq_type = srq_init_attr->srq_type; in ib_create_srq()
722 if (ib_srq_has_cq(srq->srq_type)) { in ib_create_srq()
726 if (srq->srq_type == IB_SRQT_XRC) { in ib_create_srq()
735 if (srq->srq_type == IB_SRQT_XRC) in ib_create_srq()
737 if (ib_srq_has_cq(srq->srq_type)) in ib_create_srq()
773 if (srq->srq_type == IB_SRQT_XRC) in ib_destroy_srq_user()
775 if (ib_srq_has_cq(srq->srq_type)) in ib_destroy_srq_user()
H A Dib_uverbs_cmd.c3385 if (cmd->srq_type == IB_SRQT_TM) in __uverbs_create_xsrq()
3388 if (cmd->srq_type == IB_SRQT_XRC) { in __uverbs_create_xsrq()
3406 if (ib_srq_has_cq(cmd->srq_type)) { in __uverbs_create_xsrq()
3423 attr.srq_type = cmd->srq_type; in __uverbs_create_xsrq()
3438 srq->srq_type = cmd->srq_type; in __uverbs_create_xsrq()
3447 if (ib_srq_has_cq(cmd->srq_type)) { in __uverbs_create_xsrq()
3467 if (cmd->srq_type == IB_SRQT_XRC) in __uverbs_create_xsrq()
3474 if (cmd->srq_type == IB_SRQT_XRC) in __uverbs_create_xsrq()
3477 if (ib_srq_has_cq(cmd->srq_type)) in __uverbs_create_xsrq()
3495 if (ib_srq_has_cq(cmd->srq_type)) in __uverbs_create_xsrq()
[all …]
/freebsd/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_srq.c280 in.type = init_attr->srq_type; in mlx5_ib_create_srq()
298 if (init_attr->srq_type == IB_SRQT_XRC) in mlx5_ib_create_srq()
303 if (ib_srq_has_cq(init_attr->srq_type)) in mlx5_ib_create_srq()
H A Dmlx5_ib_main.c2970 attr.srq_type = IB_SRQT_XRC; in create_dev_resources()
2982 devr->s0->srq_type = IB_SRQT_XRC; in create_dev_resources()
2997 attr.srq_type = IB_SRQT_BASIC; in create_dev_resources()
3006 devr->s1->srq_type = IB_SRQT_BASIC; in create_dev_resources()
/freebsd/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_srq.c180 cqn = (init_attr->srq_type == IB_SRQT_XRC) ? in mlx4_ib_create_srq()
182 xrcdn = (init_attr->srq_type == IB_SRQT_XRC) ? in mlx4_ib_create_srq()
/freebsd/contrib/ofed/libibverbs/
H A Ddriver.h80 enum ibv_srq_type srq_type; member
H A Dcmd.c698 cmd->srq_type = (attr_ex->comp_mask & IBV_SRQ_INIT_ATTR_TYPE) ? in ibv_cmd_create_srq_ex()
699 attr_ex->srq_type : IBV_SRQT_BASIC; in ibv_cmd_create_srq_ex()
735 srq->srq_type = (attr_ex->comp_mask & IBV_SRQ_INIT_ATTR_TYPE) ? in ibv_cmd_create_srq_ex()
736 attr_ex->srq_type : IBV_SRQT_BASIC; in ibv_cmd_create_srq_ex()
737 if (srq->srq_type == IBV_SRQT_XRC) { in ibv_cmd_create_srq_ex()
H A Dverbs.h671 enum ibv_srq_type srq_type; member
1960 (srq_init_attr_ex->srq_type == IBV_SRQT_BASIC))) in ibv_create_srq_ex()
H A Dkern-abi.h1114 __u32 srq_type; member
/freebsd/sys/ofed/include/rdma/
H A Dib_verbs.h928 static inline bool ib_srq_has_cq(enum ib_srq_type srq_type) in ib_srq_has_cq() argument
930 return srq_type == IB_SRQT_XRC || in ib_srq_has_cq()
931 srq_type == IB_SRQT_TM; in ib_srq_has_cq()
949 enum ib_srq_type srq_type; member
1484 enum ib_srq_type srq_type; member
/freebsd/contrib/ofed/libmlx4/
H A Dverbs.c710 (attr_ex->srq_type == IBV_SRQT_BASIC)) in mlx4_create_srq_ex()
712 else if (attr_ex->srq_type == IBV_SRQT_XRC) in mlx4_create_srq_ex()
/freebsd/contrib/ofed/librdmacm/
H A Dcma.c1271 if (attr->srq_type == IBV_SRQT_XRC) { in rdma_create_srq_ex()
1310 attr_ex.srq_type = IBV_SRQT_XRC; in rdma_create_srq()
1312 attr_ex.srq_type = IBV_SRQT_BASIC; in rdma_create_srq()
/freebsd/sys/ofed/include/uapi/rdma/
H A Dib_user_verbs.h1178 __u32 srq_type; member
/freebsd/contrib/ofed/libibverbs/examples/
H A Dxsrq_pingpong.c299 attr.srq_type = IBV_SRQT_XRC; in pp_init_ctx()
/freebsd/contrib/ofed/libmlx5/
H A Dverbs.c1954 (attr->srq_type == IBV_SRQT_BASIC)) in mlx5_create_srq_ex()
1957 else if (attr->srq_type == IBV_SRQT_XRC) in mlx5_create_srq_ex()
/freebsd/sys/dev/mthca/
H A Dmthca_provider.c415 if (init_attr->srq_type != IB_SRQT_BASIC) in mthca_create_srq()