Searched refs:cqid (Results 1 - 20 of 20) sorted by relevance

/freebsd-10-stable/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_user.h52 __u32 cqid; member in struct:iwch_create_cq_resp_v0
58 uint32_t cqid; member in struct:iwch_create_cq_resp
H A Diw_cxgb.h134 static inline struct iwch_cq *get_chp(struct iwch_dev *rhp, u32 cqid) argument
136 return idr_find(&rhp->cqidr, cqid);
H A Diw_cxgb_resource.h45 extern void cxio_hal_put_cqid(struct cxio_hal_resource *rscp, u32 cqid);
H A Diw_cxgb_ev.c142 u32 cqid = RSPQ_CQID(rsp_msg); local
145 chp = get_chp(rnicp, cqid);
148 log(LOG_ERR,"BAD AE cqid 0x%x qpid 0x%x opcode %d "
150 cqid, CQE_QPID(rsp_msg->cqe),
H A Diw_cxgb_provider.c167 remove_handle(chp->rhp, &chp->rhp->cqidr, chp->cq.cqid);
232 if (insert_handle(rhp, &rhp->cqidr, chp, chp->cq.cqid)) {
246 uresp.cqid = chp->cq.cqid;
275 CTR4(KTR_IW_CXGB, "created cqid 0x%0x chp %p size 0x%0x, dma_addr 0x%0llx",
276 chp->cq.cqid, chp, (1 << chp->cq.size_log2),
316 chp->cq.cqid);
778 schp = get_chp(rhp, ((struct iwch_cq *) attrs->send_cq)->cq.cqid);
779 rchp = get_chp(rhp, ((struct iwch_cq *) attrs->recv_cq)->cq.cqid);
826 qhp->attr.scq = ((struct iwch_cq *) attrs->send_cq)->cq.cqid;
[all...]
H A Diw_cxgb_hal.c121 ret = t3_sge_cqcntxt_op(sc, cq->cqid, op, credit);
169 cxio_hal_clear_cq_ctx(struct cxio_rdev *rdev_p, u32 cqid) argument
172 return (cxio_rdma_cq_setup(rdev_p, cqid, 0, 0, 0, 0, 0));
202 cq->cqid = cxio_hal_get_cqid(rdev_p->rscp);
203 if (!cq->cqid)
221 return (cxio_rdma_cq_setup(rdev_p, cq->cqid, cq->dma_addr,
346 err = cxio_hal_clear_cq_ctx(rdev_p, cq->cqid);
357 cxio_hal_put_cqid(rdev_p->rscp, cq->cqid);
468 CTR3(KTR_IW_CXGB, "%s cq %p cqid 0x%x", __FUNCTION__, cq, cq->cqid);
[all...]
H A Diw_cxgb_resource.c267 void cxio_hal_put_cqid(struct cxio_hal_resource *rscp, u32 cqid) argument
269 cxio_hal_put_resource(rscp->cqid_fifo, cqid, &rscp->cqid_fifo_lock);
H A Diw_cxgb_cq.c115 credit, chp->cq.cqid);
H A Diw_cxgb_wr.h659 u32 cqid; member in struct:t3_cq
/freebsd-10-stable/sys/dev/cxgbe/iw_cxgbe/
H A Duser.h50 __u32 cqid; member in struct:c4iw_create_cq_resp
H A Dev.c89 u32 cqid; local
105 cqid = qhp->attr.scq;
107 cqid = qhp->attr.rcq;
108 chp = get_chp(dev, cqid);
110 printf("BAD AE cqid 0x%x qpid 0x%x opcode %d "
112 cqid, CQE_QPID(err_cqe),
209 CTR2(KTR_IW_CXGBE, "%s unknown cqid 0x%x", __func__, qid);
H A Dcq.c77 res->u.cq.iqid = cpu_to_be32(cq->cqid);
87 c4iw_put_cqid(rdev, cq->cqid, uctx);
104 cq->cqid = c4iw_get_cqid(rdev, uctx);
105 if (!cq->cqid) {
148 res->u.cq.iqid = cpu_to_be32(cq->cqid);
180 (cq->cqid << rdev->cqshift));
183 "%s: UGTS %p cqid %x cqshift %d page_mask %x", __func__,
184 cq->ugts, cq->cqid, rdev->cqshift, PAGE_MASK);
192 c4iw_put_cqid(rdev, cq->cqid, uctx);
274 CTR3(KTR_IW_CXGBE, "%s cq %p cqid
[all...]
H A Dt4.h464 u32 cqid; member in struct:t4_cq
481 INGRESSQID(cq->cqid);
486 INGRESSQID(cq->cqid);
513 INGRESSQID(cq->cqid);
541 printk(KERN_ERR MOD "cq overflow cqid %u\n", cq->cqid);
H A Dqp.c223 V_FW_RI_RES_WR_IQID(scq->cqid));
244 V_FW_RI_RES_WR_IQID(rcq->cqid));
1534 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
1535 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
1582 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
1583 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
H A Diw_cxgbe.h248 static inline struct c4iw_cq *get_chp(struct c4iw_dev *rhp, u32 cqid) argument
250 return idr_find(&rhp->cqidr, cqid);
/freebsd-10-stable/contrib/ofed/libcxgb4/src/
H A Dcxgb4-abi.h54 __u32 cqid; member in struct:c4iw_create_cq_resp
H A Dt4.h573 u32 cqid; member in struct:t4_cq
591 V_INGRESSQID(cq->cqid & cq->qid_mask);
596 V_INGRESSQID(cq->cqid & cq->qid_mask);
606 syslog(LOG_NOTICE, "cxgb4 sw cq overflow cqid %u\n", cq->cqid);
629 V_INGRESSQID(cq->cqid & cq->qid_mask);
657 syslog(LOG_NOTICE, "cxgb4 cq overflow cqid %u\n", cq->cqid);
672 syslog(LOG_NOTICE, "cxgb4 sw cq overflow cqid %u\n", cq->cqid);
[all...]
H A Dcq.c208 PDBG("%s cqid 0x%x\n", __func__, chp->cq.cqid);
543 PDBG("%s cq %p cqid 0x%x skip sw cqe cidx %u\n",
544 __func__, cq, cq->cqid, cq->sw_cidx);
547 PDBG("%s cq %p cqid 0x%x skip hw cqe cidx %u\n",
548 __func__, cq, cq->cqid, cq->cidx);
704 syslog(LOG_NOTICE, "cxgb4 app err cqid %u qpid %u "
706 chp->cq.cqid, CQE_QPID(&cqe), CQE_TYPE(&cqe),
H A Dverbs.c201 chp->cq.cqid = resp.cqid;
223 PDBG("%s cqid 0x%x key %" PRIx64 " va %p memsize %lu gts_key %"
225 __func__, chp->cq.cqid, resp.key, chp->cq.queue,
229 dev->cqid2ptr[chp->cq.cqid] = chp;
274 dev->cqid2ptr[chp->cq.cqid] = NULL;
H A Ddev.c228 chp->cq.cqid, chp->cq.queue, chp->cq.cidx,

Completed in 301 milliseconds