/openbmc/linux/drivers/infiniband/core/ |
H A D | cq.c | 42 struct ib_cq *cq = dim->priv; in ib_cq_rdma_dim_work() 53 static void rdma_dim_init(struct ib_cq *cq) in rdma_dim_init() 74 static void rdma_dim_destroy(struct ib_cq *cq) in rdma_dim_destroy() 83 static int __poll_cq(struct ib_cq *cq, int num_entries, struct ib_wc *wc) in __poll_cq() 92 static int __ib_process_cq(struct ib_cq *cq, int budget, struct ib_wc *wcs, in __ib_process_cq() 138 int ib_process_cq_direct(struct ib_cq *cq, int budget) in ib_process_cq_direct() 146 static void ib_cq_completion_direct(struct ib_cq *cq, void *private) in ib_cq_completion_direct() 153 struct ib_cq *cq = container_of(iop, struct ib_cq, iop); in ib_poll_handler() 172 static void ib_cq_completion_softirq(struct ib_cq *cq, void *private) in ib_cq_completion_softirq() 180 struct ib_cq *cq = container_of(work, struct ib_cq, work); in ib_cq_poll_work() [all …]
|
H A D | uverbs_std_types_cq.c | 42 struct ib_cq *cq = uobject->object; in uverbs_free_cq() 71 struct ib_cq *cq; in UVERBS_HANDLER() 115 cq = rdma_zalloc_drv_obj(ib_dev, ib_cq); in UVERBS_HANDLER()
|
/openbmc/linux/drivers/infiniband/sw/rdmavt/ |
H A D | cq.h | 12 int rvt_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 14 int rvt_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata); 15 int rvt_req_notify_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags notify_flags); 16 int rvt_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata); 17 int rvt_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *entry);
|
H A D | cq.c | 158 int rvt_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, in rvt_create_cq() 276 int rvt_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata) in rvt_destroy_cq() 302 int rvt_req_notify_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags notify_flags) in rvt_req_notify_cq() 338 int rvt_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata) in rvt_resize_cq() 476 int rvt_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *entry) in rvt_poll_cq()
|
/openbmc/linux/drivers/infiniband/hw/hns/ |
H A D | hns_roce_restrack.c | 12 int hns_roce_fill_res_cq_entry(struct sk_buff *msg, struct ib_cq *ib_cq) in hns_roce_fill_res_cq_entry() argument 14 struct hns_roce_cq *hr_cq = to_hr_cq(ib_cq); in hns_roce_fill_res_cq_entry() 43 int hns_roce_fill_res_cq_entry_raw(struct sk_buff *msg, struct ib_cq *ib_cq) in hns_roce_fill_res_cq_entry_raw() argument 45 struct hns_roce_dev *hr_dev = to_hr_dev(ib_cq->device); in hns_roce_fill_res_cq_entry_raw() 46 struct hns_roce_cq *hr_cq = to_hr_cq(ib_cq); in hns_roce_fill_res_cq_entry_raw()
|
H A D | hns_roce_cq.c | 301 struct ib_device *ibdev = hr_cq->ib_cq.device; in get_cq_ucmd() 316 struct hns_roce_dev *hr_dev = to_hr_dev(hr_cq->ib_cq.device); in set_cq_param() 320 hr_cq->ib_cq.cqe = cq_entries - 1; /* used as cqe index */ in set_cq_param() 332 struct hns_roce_dev *hr_dev = to_hr_dev(hr_cq->ib_cq.device); in set_cqe_size() 355 int hns_roce_create_cq(struct ib_cq *ib_cq, const struct ib_cq_init_attr *attr, in hns_roce_create_cq() argument 358 struct hns_roce_dev *hr_dev = to_hr_dev(ib_cq->device); in hns_roce_create_cq() 360 struct hns_roce_cq *hr_cq = to_hr_cq(ib_cq); in hns_roce_create_cq() 435 int hns_roce_destroy_cq(struct ib_cq *ib_cq, struct ib_udata *udata) in hns_roce_destroy_cq() argument 437 struct hns_roce_dev *hr_dev = to_hr_dev(ib_cq->device); in hns_roce_destroy_cq() 438 struct hns_roce_cq *hr_cq = to_hr_cq(ib_cq); in hns_roce_destroy_cq() [all …]
|
H A D | hns_roce_device.h | 412 struct ib_cq ib_cq; member 1027 static inline struct hns_roce_cq *to_hr_cq(struct ib_cq *ib_cq) in to_hr_cq() argument 1029 return container_of(ib_cq, struct hns_roce_cq, ib_cq); in to_hr_cq() 1216 struct ib_cq *ib_cq); 1227 int hns_roce_create_cq(struct ib_cq *ib_cq, const struct ib_cq_init_attr *attr, 1230 int hns_roce_destroy_cq(struct ib_cq *ib_cq, struct ib_udata *udata); 1248 int hns_roce_fill_res_cq_entry(struct sk_buff *msg, struct ib_cq *ib_cq); 1249 int hns_roce_fill_res_cq_entry_raw(struct sk_buff *msg, struct ib_cq *ib_cq);
|
/openbmc/linux/drivers/infiniband/hw/ocrdma/ |
H A D | ocrdma_verbs.h | 51 int ocrdma_poll_cq(struct ib_cq *, int num_entries, struct ib_wc *wc); 52 int ocrdma_arm_cq(struct ib_cq *, enum ib_cq_notify_flags flags); 72 int ocrdma_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 74 int ocrdma_resize_cq(struct ib_cq *, int cqe, struct ib_udata *); 75 int ocrdma_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata);
|
/openbmc/linux/include/trace/events/ |
H A D | rdma_core.h | 51 struct ib_cq *cq 72 struct ib_cq *cq 93 const struct ib_cq *cq 120 const struct ib_cq *cq, 146 const struct ib_cq *cq 167 const struct ib_cq *cq, 193 const struct ib_cq *cq, 253 const struct ib_cq *cq
|
/openbmc/linux/drivers/infiniband/hw/bnxt_re/ |
H A D | ib_verbs.h | 99 struct ib_cq ib_cq; member 220 int bnxt_re_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 222 int bnxt_re_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata); 223 int bnxt_re_destroy_cq(struct ib_cq *cq, struct ib_udata *udata); 224 int bnxt_re_poll_cq(struct ib_cq *cq, int num_entries, struct ib_wc *wc); 225 int bnxt_re_req_notify_cq(struct ib_cq *cq, enum ib_cq_notify_flags flags);
|
/openbmc/linux/drivers/infiniband/ulp/iser/ |
H A D | iscsi_iser.h | 371 struct ib_cq *cq; 498 void iser_login_rsp(struct ib_cq *cq, struct ib_wc *wc); 499 void iser_task_rsp(struct ib_cq *cq, struct ib_wc *wc); 500 void iser_cmd_comp(struct ib_cq *cq, struct ib_wc *wc); 501 void iser_ctrl_comp(struct ib_cq *cq, struct ib_wc *wc); 502 void iser_dataout_comp(struct ib_cq *cq, struct ib_wc *wc); 503 void iser_reg_comp(struct ib_cq *cq, struct ib_wc *wc);
|
/openbmc/linux/net/smc/ |
H A D | smc_wr.h | 131 void smc_wr_tx_cq_handler(struct ib_cq *ib_cq, void *cq_context); 136 void smc_wr_rx_cq_handler(struct ib_cq *ib_cq, void *cq_context);
|
/openbmc/linux/drivers/infiniband/hw/qedr/ |
H A D | verbs.h | 54 int qedr_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 56 int qedr_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata); 57 int qedr_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags); 89 int qedr_poll_cq(struct ib_cq *, int num_entries, struct ib_wc *wc);
|
/openbmc/linux/drivers/infiniband/sw/siw/ |
H A D | siw_verbs.h | 45 int siw_create_cq(struct ib_cq *base_cq, const struct ib_cq_init_attr *attr, 64 int siw_destroy_cq(struct ib_cq *base_cq, struct ib_udata *udata); 65 int siw_poll_cq(struct ib_cq *base_cq, int num_entries, struct ib_wc *wc); 66 int siw_req_notify_cq(struct ib_cq *base_cq, enum ib_cq_notify_flags flags);
|
/openbmc/linux/drivers/infiniband/hw/erdma/ |
H A D | erdma_verbs.h | 259 struct ib_cq ibcq; 310 static inline struct erdma_cq *to_ecq(struct ib_cq *ibcq) in to_ecq() 327 int erdma_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 342 int erdma_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata); 343 int erdma_req_notify_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags); 357 int erdma_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
|
/openbmc/linux/include/rdma/ |
H A D | ib_verbs.h | 757 struct ib_cq *cq; 1077 struct ib_cq *cq; 1177 struct ib_cq *send_cq; 1178 struct ib_cq *recv_cq; 1377 void (*done)(struct ib_cq *cq, struct ib_wc *wc); 1582 typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context); 1593 struct ib_cq { argument 1634 struct ib_cq *cq; 1685 struct ib_cq *cq; 1705 struct ib_cq *c 1591 struct ib_cq { global() struct 1592 deviceib_cq global() argument 1594 comp_handlerib_cq global() argument 1595 event_handlerib_cq global() argument 1596 cq_contextib_cq global() argument 1597 cqeib_cq global() argument 1598 cqe_usedib_cq global() argument 1599 usecntib_cq global() argument 1600 poll_ctxib_cq global() argument 1601 wcib_cq global() argument 1602 pool_entryib_cq global() argument 1603 __anonda035319110aib_cq global() argument 1607 comp_wqib_cq global() argument 1608 dimib_cq global() argument 1632 resib_cq global() argument [all...] |
H A D | rdmavt_cq.h | 47 struct ib_cq ibcq; 60 static inline struct rvt_cq *ibcq_to_rvtcq(struct ib_cq *ibcq) in ibcq_to_rvtcq()
|
/openbmc/linux/drivers/infiniband/hw/mana/ |
H A D | mana_ib.h | 65 struct ib_cq ibcq; 137 int mana_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 140 int mana_ib_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata);
|
H A D | cq.c | 8 int mana_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, in mana_ib_create_cq() 67 int mana_ib_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata) in mana_ib_destroy_cq()
|
/openbmc/linux/drivers/infiniband/hw/mlx4/ |
H A D | mlx4_ib.h | 102 struct ib_cq *cq; 117 struct ib_cq ibcq; 482 struct ib_cq *cq; 690 static inline struct mlx4_ib_cq *to_mcq(struct ib_cq *ibcq) in to_mcq() 767 int mlx4_ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period); 768 int mlx4_ib_resize_cq(struct ib_cq *ibcq, int entries, struct ib_udata *udata); 769 int mlx4_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 771 int mlx4_ib_destroy_cq(struct ib_cq *cq, struct ib_udata *udata); 772 int mlx4_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc); 773 int mlx4_ib_arm_cq(struct ib_cq *cq, enum ib_cq_notify_flags flags);
|
/openbmc/linux/drivers/infiniband/hw/usnic/ |
H A D | usnic_ib_verbs.h | 58 int usnic_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 60 int usnic_ib_destroy_cq(struct ib_cq *cq, struct ib_udata *udata);
|
/openbmc/linux/drivers/infiniband/hw/efa/ |
H A D | efa.h | 89 struct ib_cq ibcq; 151 int efa_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata); 152 int efa_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr,
|
/openbmc/linux/drivers/infiniband/hw/vmw_pvrdma/ |
H A D | pvrdma_verbs.h | 377 int pvrdma_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 379 int pvrdma_destroy_cq(struct ib_cq *cq, struct ib_udata *udata); 380 int pvrdma_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc); 381 int pvrdma_req_notify_cq(struct ib_cq *cq, enum ib_cq_notify_flags flags);
|
/openbmc/linux/drivers/infiniband/hw/mlx5/ |
H A D | mlx5_ib.h | 495 struct ib_cq *cq; 574 struct ib_cq ibcq; 758 struct ib_cq *cq; 822 struct ib_cq *c0; 1207 static inline struct mlx5_ib_cq *to_mcq(struct ib_cq *ibcq) in to_mcq() 1315 int mlx5_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, 1317 int mlx5_ib_destroy_cq(struct ib_cq *cq, struct ib_udata *udata); 1318 int mlx5_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc); 1319 int mlx5_ib_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags); 1320 int mlx5_ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period); [all …]
|
H A D | wr.h | 94 int mlx5r_wq_overflow(struct mlx5_ib_wq *wq, int nreq, struct ib_cq *ib_cq);
|