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

/linux-master/include/uapi/rdma/
H A Dmana-abi.h31 __u32 cqid; member in struct:mana_ib_create_qp_resp
57 __u32 cqid; member in struct:rss_resp_entry
H A Dcxgb4-abi.h61 __u32 cqid; member in struct:c4iw_create_cq_resp
H A Dbnxt_re-abi.h110 __u32 cqid; member in struct:bnxt_re_cq_resp
/linux-master/drivers/net/ethernet/fungible/funcore/
H A Dfun_queue.c75 int fun_sq_create(struct fun_dev *fdev, u16 flags, u32 sqid, u32 cqid, argument
100 sqid, cqid, sqe_size_log2,
125 int fun_cq_create(struct fun_dev *fdev, u16 flags, u32 cqid, u32 rqid, argument
145 cqid, rqid, cqe_size_log2,
331 funq->cqid, new_cqes, max, funq->cq_head, funq->cq_phase);
420 funq->cqid = 2 * qid;
422 /* I/O Q: use rqid = cqid, sqid = +1 */
423 funq->rqid = funq->cqid;
431 funq->cqid = qid;
475 if (funq->cqid
[all...]
H A Dfun_queue.h41 u32 cqid; member in struct:fun_queue
132 int fun_sq_create(struct fun_dev *fdev, u16 flags, u32 sqid, u32 cqid,
137 int fun_cq_create(struct fun_dev *fdev, u16 flags, u32 cqid, u32 rqid,
151 #define fun_destroy_cq(fdev, cqid) \
152 fun_res_destroy((fdev), FUN_ADMIN_OP_EPCQ, 0, (cqid))
H A Dfun_dev.h119 unsigned int cqid)
121 return fun_db_addr(fdev, cqid * 2 + 1);
118 fun_cq_db_addr(const struct fun_dev *fdev, unsigned int cqid) argument
/linux-master/drivers/infiniband/hw/cxgb4/
H A Dev.c124 u32 cqid; local
139 cqid = qhp->attr.scq;
141 cqid = qhp->attr.rcq;
142 chp = get_chp(dev, cqid);
144 pr_err("BAD AE cqid 0x%x qpid 0x%x opcode %d status 0x%x type %d wrid.hi 0x%x wrid.lo 0x%x\n",
145 cqid, CQE_QPID(err_cqe),
238 pr_debug("unknown cqid 0x%x\n", qid);
H A Dcq.c58 res->u.cq.iqid = cpu_to_be32(cq->cqid);
67 c4iw_put_cqid(rdev, cq->cqid, uctx);
85 cq->cqid = c4iw_get_cqid(rdev, uctx);
86 if (!cq->cqid) {
136 res->u.cq.iqid = cpu_to_be32(cq->cqid);
163 cq->bar2_va = c4iw_bar2_addrs(rdev, cq->cqid, CXGB4_BAR2_QTYPE_INGRESS,
167 pr_warn("%s: cqid %u not in BAR2 range\n",
168 pci_name(rdev->lldi.pdev), cq->cqid);
179 c4iw_put_cqid(rdev, cq->cqid, uctx);
342 pr_debug("cqid
[all...]
H A Dt4.h688 u32 cqid; member in struct:t4_cq
709 writel(val | INGRESSQID_V(cq->cqid), cq->gts);
737 pr_warn("%s cxgb4 sw cq overflow cqid %u\n",
738 __func__, cq->cqid);
793 pr_err("cq overflow cqid %u\n", cq->cqid);
H A Drestrack.c273 if (rdma_nl_put_driver_u32(msg, "cqid", cq->cqid))
H A Diw_cxgb4.h343 static inline struct c4iw_cq *get_chp(struct c4iw_dev *rhp, u32 cqid) argument
345 return xa_load(&rhp->cqs, cqid);
H A Dqp.c338 FW_RI_RES_WR_IQID_V(scq->cqid));
368 FW_RI_RES_WR_IQID_V(rcq->cqid));
2131 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
2132 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
2188 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
2189 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
/linux-master/drivers/nvme/host/
H A Dtrace.c27 u16 cqid = get_unaligned_le16(cdw10 + 6); local
30 trace_seq_printf(p, "sqid=%u, qsize=%u, sq_flags=0x%x, cqid=%u",
31 sqid, qsize, sq_flags, cqid);
40 u16 cqid = get_unaligned_le16(cdw10); local
42 trace_seq_printf(p, "cqid=%u", cqid);
51 u16 cqid = get_unaligned_le16(cdw10); local
56 trace_seq_printf(p, "cqid=%u, qsize=%u, cq_flags=0x%x, irq_vector=%u",
57 cqid, qsize, cq_flags, irq_vector);
H A Dapple.c686 c.create_cq.cqid = cpu_to_le16(1);
717 c.create_sq.cqid = cpu_to_le16(1);
H A Dpci.c1170 c.create_cq.cqid = cpu_to_le16(qid);
1202 c.create_sq.cqid = cpu_to_le16(qid);
1207 static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid) argument
1209 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
/linux-master/drivers/infiniband/hw/mana/
H A Dqp.c225 resp.entries[i].cqid = cq->id;
410 resp.cqid = send_cq->id;
/linux-master/include/linux/
H A Dnvme.h1305 __le16 cqid; member in struct:nvme_create_cq
1322 __le16 cqid; member in struct:nvme_create_sq
/linux-master/drivers/scsi/lpfc/
H A Dlpfc_sli.c594 int cqid = 0; local
600 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
604 if (childq->queue_id == cqid) {
11100 u16 iotag, u8 ulp_class, u16 cqid, bool ia,
11130 u16 iotag, u8 ulp_class, u16 cqid, bool ia,
11160 bf_set(wqe_cqid, &wqe->abort_cmd.wqe_com, cqid);
11166 u16 ulp_context, u16 iotag, u8 ulp_class, u16 cqid,
11170 cqid, ia, wqec);
12845 u16 ulp_context, iotag, cqid = LPFC_WQE_CQ_ID_DEFAULT; local
12911 cqid
11099 __lpfc_sli_prep_abort_xri_s3(struct lpfc_iocbq *cmdiocbq, u16 ulp_context, u16 iotag, u8 ulp_class, u16 cqid, bool ia, bool wqec) argument
11129 __lpfc_sli_prep_abort_xri_s4(struct lpfc_iocbq *cmdiocbq, u16 ulp_context, u16 iotag, u8 ulp_class, u16 cqid, bool ia, bool wqec) argument
11165 lpfc_sli_prep_abort_xri(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocbq, u16 ulp_context, u16 iotag, u8 ulp_class, u16 cqid, bool ia, bool wqec) argument
14809 uint16_t cqid; local
15424 uint16_t cqid, id; local
[all...]
H A Dlpfc_crtn.h380 u16 ulp_context, u16 iotag, u8 ulp_class, u16 cqid,
H A Dlpfc.h967 u8 ulp_class, u16 cqid, bool ia,
/linux-master/drivers/infiniband/hw/ocrdma/
H A Docrdma_hw.c688 u16 cqid = cqe->cqvalid_cqid & OCRDMA_AE_MCQE_CQID_MASK; local
706 if (cqid < dev->attr.max_cq)
707 cq = dev->cq_tbl[cqid];
709 pr_err("ocrdma%d:Async event - cqid %u is not valid\n",
710 dev->id, cqid);
/linux-master/drivers/infiniband/hw/bnxt_re/
H A Dib_verbs.c3049 resp.cqid = cq->qplib_cq.id;

Completed in 292 milliseconds