Home
last modified time | relevance | path

Searched refs:rqe (Results 1 – 7 of 7) sorted by relevance

/drivers/staging/wilc1000/
Dwilc_wlan.c595 static int wilc_wlan_rxq_add(struct wilc *wilc, struct rxq_entry_t *rqe) in wilc_wlan_rxq_add() argument
605 rqe->next = NULL; in wilc_wlan_rxq_add()
606 p->rxq_head = rqe; in wilc_wlan_rxq_add()
607 p->rxq_tail = rqe; in wilc_wlan_rxq_add()
610 p->rxq_tail->next = rqe; in wilc_wlan_rxq_add()
611 rqe->next = NULL; in wilc_wlan_rxq_add()
612 p->rxq_tail = rqe; in wilc_wlan_rxq_add()
626 struct rxq_entry_t *rqe; in wilc_wlan_rxq_remove() local
629 rqe = p->rxq_head; in wilc_wlan_rxq_remove()
634 return rqe; in wilc_wlan_rxq_remove()
[all …]
/drivers/scsi/bnx2i/
Dbnx2i.h502 struct rqe { struct
668 struct rqe *rq_virt;
672 struct rqe *rq_prod_qe;
673 struct rqe *rq_cons_qe;
674 struct rqe *rq_first_qe;
675 struct rqe *rq_last_qe;
/drivers/block/
Dsunvdc.c295 struct vdc_req_entry *rqe = &port->rq_arr[index]; in vdc_end_one() local
305 req = rqe->req; in vdc_end_one()
311 rqe->req = NULL; in vdc_end_one()
451 struct vdc_req_entry *rqe; in __send_request() local
485 rqe = &port->rq_arr[dr->prod]; in __send_request()
486 rqe->req = req; in __send_request()
993 struct vdc_req_entry *rqe = &port->rq_arr[idx]; in vdc_requeue_inflight() local
1000 req = rqe->req; in vdc_requeue_inflight()
1006 rqe->req = NULL; in vdc_requeue_inflight()
/drivers/infiniband/hw/ocrdma/
Docrdma_verbs.c2319 static void ocrdma_build_rqe(struct ocrdma_hdr_wqe *rqe, struct ib_recv_wr *wr, in ocrdma_build_rqe() argument
2325 wqe_size = (wr->num_sge * sizeof(*sge)) + sizeof(*rqe); in ocrdma_build_rqe()
2327 wqe_size = sizeof(*sge) + sizeof(*rqe); in ocrdma_build_rqe()
2329 rqe->cw = ((wqe_size / OCRDMA_WQE_STRIDE) << in ocrdma_build_rqe()
2331 rqe->cw |= (OCRDMA_FLAG_SIG << OCRDMA_WQE_FLAGS_SHIFT); in ocrdma_build_rqe()
2332 rqe->cw |= (OCRDMA_TYPE_LKEY << OCRDMA_WQE_TYPE_SHIFT); in ocrdma_build_rqe()
2333 rqe->total_len = 0; in ocrdma_build_rqe()
2334 rqe->rsvd_tag = tag; in ocrdma_build_rqe()
2335 sge = (struct ocrdma_sge *)(rqe + 1); in ocrdma_build_rqe()
2336 ocrdma_build_sges(rqe, sge, wr->num_sge, wr->sg_list); in ocrdma_build_rqe()
[all …]
Docrdma_hw.c2314 struct ocrdma_hdr_wqe *rqe; in ocrdma_set_create_qp_ird_cmd() local
2328 rqe = (struct ocrdma_hdr_wqe *)(qp->ird_q_va + in ocrdma_set_create_qp_ird_cmd()
2330 rqe->cw = 0; in ocrdma_set_create_qp_ird_cmd()
2331 rqe->cw |= 2; in ocrdma_set_create_qp_ird_cmd()
2332 rqe->cw |= (OCRDMA_TYPE_LKEY << OCRDMA_WQE_TYPE_SHIFT); in ocrdma_set_create_qp_ird_cmd()
2333 rqe->cw |= (8 << OCRDMA_WQE_SIZE_SHIFT); in ocrdma_set_create_qp_ird_cmd()
2334 rqe->cw |= (8 << OCRDMA_WQE_NXT_WQE_SIZE_SHIFT); in ocrdma_set_create_qp_ird_cmd()
/drivers/scsi/lpfc/
Dlpfc_sli4.h125 struct lpfc_rqe *rqe; member
Dlpfc_sli.c472 temp_hrqe = hq->qe[hq->host_index].rqe; in lpfc_sli4_rq_put()
473 temp_drqe = dq->qe[dq->host_index].rqe; in lpfc_sli4_rq_put()