Lines Matching refs:cqe
629 struct ehca_cqe *cqe; in ehca_poll_cq_one() local
636 cqe = (struct ehca_cqe *) in ehca_poll_cq_one()
638 if (!cqe) { in ehca_poll_cq_one()
650 if (unlikely(cqe->status & WC_STATUS_PURGE_BIT)) { in ehca_poll_cq_one()
655 qp = ehca_cq_get_qp(my_cq, cqe->local_qp_number); in ehca_poll_cq_one()
659 my_cq->cq_number, cqe->local_qp_number); in ehca_poll_cq_one()
660 ehca_dmp(cqe, 64, "cq_num=%x qp_num=%x", in ehca_poll_cq_one()
661 my_cq->cq_number, cqe->local_qp_number); in ehca_poll_cq_one()
672 cqe->local_qp_number, cqe->remote_qp_number); in ehca_poll_cq_one()
674 ehca_dmp(cqe, 64, "qp_num=%x src_qp=%x", in ehca_poll_cq_one()
675 cqe->local_qp_number, in ehca_poll_cq_one()
676 cqe->remote_qp_number); in ehca_poll_cq_one()
686 is_error = cqe->status & WC_STATUS_ERROR_BIT; in ehca_poll_cq_one()
693 ehca_dmp(cqe, 64, "ehca_cq=%p cq_num=%x", in ehca_poll_cq_one()
701 my_qp = idr_find(&ehca_qp_idr, cqe->qp_token); in ehca_poll_cq_one()
707 qmap_tail_idx = get_app_wr_id(cqe->work_request_id); in ehca_poll_cq_one()
708 if (!(cqe->w_completion_flags & WC_SEND_RECEIVE_BIT)) in ehca_poll_cq_one()
743 wc->wr_id = replace_wr_id(cqe->work_request_id, qmap_entry->app_wr_id); in ehca_poll_cq_one()
758 wc->opcode = ib_wc_opcode[cqe->optype]-1; in ehca_poll_cq_one()
762 cqe->optype, cqe->status, my_cq, my_cq->cq_number); in ehca_poll_cq_one()
764 ehca_dmp(cqe, 64, "ehca_cq=%p cq_num=%x", in ehca_poll_cq_one()
773 map_ib_wc_status(cqe->status, &wc->status); in ehca_poll_cq_one()
778 wc->byte_len = cqe->nr_bytes_transferred; in ehca_poll_cq_one()
779 wc->pkey_index = cqe->pkey_index; in ehca_poll_cq_one()
780 wc->slid = cqe->rlid; in ehca_poll_cq_one()
781 wc->dlid_path_bits = cqe->dlid; in ehca_poll_cq_one()
782 wc->src_qp = cqe->remote_qp_number; in ehca_poll_cq_one()
787 wc->wc_flags = (cqe->w_completion_flags >> 5) & 3; in ehca_poll_cq_one()
788 wc->ex.imm_data = cpu_to_be32(cqe->immediate_data); in ehca_poll_cq_one()
789 wc->sl = cqe->service_level; in ehca_poll_cq_one()