Lines Matching defs:nvmewqeq

870 	struct lpfc_iocbq *nvmewqeq;
891 nvmewqeq = lpfc_nvmet_prep_ls_wqe(phba, axchg, ls_rsp->rspdma,
893 if (nvmewqeq == NULL) {
902 nvmewqeq->rsvd2 = 1;
903 nvmewqeq->hba_wqidx = 0;
904 nvmewqeq->context3 = &dmabuf;
906 bpl.addrLow = nvmewqeq->wqe.xmit_sequence.bde.addrLow;
907 bpl.addrHigh = nvmewqeq->wqe.xmit_sequence.bde.addrHigh;
917 nvmewqeq->wqe_cmpl = xmt_ls_rsp_cmp;
918 nvmewqeq->iocb_cmpl = NULL;
919 nvmewqeq->context2 = axchg;
922 axchg->oxid, nvmewqeq->hba_wqidx, ls_rsp->rsplen);
924 rc = lpfc_sli4_issue_wqe(phba, axchg->hdwq, nvmewqeq);
927 nvmewqeq->context3 = NULL;
944 lpfc_nlp_put(nvmewqeq->context1);
1018 struct lpfc_iocbq *nvmewqeq;
1066 nvmewqeq = lpfc_nvmet_prep_fcp_wqe(phba, ctxp);
1067 if (nvmewqeq == NULL) {
1076 nvmewqeq->wqe_cmpl = lpfc_nvmet_xmt_fcp_op_cmp;
1077 nvmewqeq->iocb_cmpl = NULL;
1078 nvmewqeq->context2 = ctxp;
1079 nvmewqeq->iocb_flag |= LPFC_IO_NVMET;
1086 rc = lpfc_sli4_issue_wqe(phba, ctxp->hdwq, nvmewqeq);
1101 * WQ was full, so queue nvmewqeq to be sent after
1108 list_add_tail(&nvmewqeq->list, &wq->wqfull_list);
1122 nvmewqeq->context2 = NULL;
1123 nvmewqeq->context3 = NULL;
2004 struct lpfc_iocbq *nvmewqeq;
2019 list_for_each_entry_safe(nvmewqeq, next_nvmewqeq,
2023 if (nvmewqeq->context2 == ctxp) {
2024 list_del(&nvmewqeq->list);
2027 lpfc_nvmet_xmt_fcp_op_cmp(phba, nvmewqeq,
2034 list_del(&nvmewqeq->list);
2036 lpfc_nvmet_xmt_fcp_op_cmp(phba, nvmewqeq, wcqep);
2051 struct lpfc_iocbq *nvmewqeq;
2063 list_remove_head(&wq->wqfull_list, nvmewqeq, struct lpfc_iocbq,
2066 ctxp = (struct lpfc_async_xchg_ctx *)nvmewqeq->context2;
2067 rc = lpfc_sli4_issue_wqe(phba, ctxp->hdwq, nvmewqeq);
2071 list_add(&nvmewqeq->list, &wq->wqfull_list);