Home
last modified time | relevance | path

Searched refs:base_srq (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/drivers/infiniband/sw/siw/
H A Dsiw_verbs.h75 int siw_create_srq(struct ib_srq *base_srq, struct ib_srq_init_attr *attr,
77 int siw_modify_srq(struct ib_srq *base_srq, struct ib_srq_attr *attr,
79 int siw_query_srq(struct ib_srq *base_srq, struct ib_srq_attr *attr);
80 int siw_destroy_srq(struct ib_srq *base_srq, struct ib_udata *udata);
81 int siw_post_srq_recv(struct ib_srq *base_srq, const struct ib_recv_wr *wr,
H A Dsiw_verbs.c1585 int siw_create_srq(struct ib_srq *base_srq, in siw_create_srq() argument
1588 struct siw_srq *srq = to_siw_srq(base_srq); in siw_create_srq()
1771 siw_dbg_pd(base_srq->pd, in siw_post_srq_recv()
1788 siw_dbg_pd(base_srq->pd, "SRQ full\n"); in siw_post_srq_recv()
1793 siw_dbg_pd(base_srq->pd, in siw_post_srq_recv()
1859 struct ib_srq *base_srq = &srq->base_srq; in siw_srq_event() local
1862 event.device = base_srq->device; in siw_srq_event()
1863 event.element.srq = base_srq; in siw_srq_event()
1865 if (base_srq->event_handler) { in siw_srq_event()
1866 siw_dbg_pd(srq->base_srq.pd, in siw_srq_event()
[all …]
H A Dsiw.h242 struct ib_srq base_srq; member
574 static inline struct siw_srq *to_siw_srq(struct ib_srq *base_srq) in to_siw_srq() argument
576 return container_of(base_srq, struct siw_srq, base_srq); in to_siw_srq()
H A Dsiw_main.c274 INIT_RDMA_OBJ_SIZE(ib_srq, siw_srq, base_srq),
H A Dsiw_qp_rx.c489 pd = qp->srq == NULL ? qp->pd : qp->srq->base_srq.pd; in siw_proc_send()