mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
RDMA/ocrdma: Fix pkey_index returned by driver in rq work completion
Currently returning the pkey value instead of pkey index. pkey index is always zero since ocrdma supports only default pkey. Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
7d82df1663
commit
aff3ead9fa
@ -2726,8 +2726,7 @@ static int ocrdma_update_ud_rcqe(struct ib_wc *ibwc, struct ocrdma_cqe *cqe)
|
|||||||
OCRDMA_CQE_UD_STATUS_MASK) >> OCRDMA_CQE_UD_STATUS_SHIFT;
|
OCRDMA_CQE_UD_STATUS_MASK) >> OCRDMA_CQE_UD_STATUS_SHIFT;
|
||||||
ibwc->src_qp = le32_to_cpu(cqe->flags_status_srcqpn) &
|
ibwc->src_qp = le32_to_cpu(cqe->flags_status_srcqpn) &
|
||||||
OCRDMA_CQE_SRCQP_MASK;
|
OCRDMA_CQE_SRCQP_MASK;
|
||||||
ibwc->pkey_index = le32_to_cpu(cqe->ud.rxlen_pkey) &
|
ibwc->pkey_index = 0;
|
||||||
OCRDMA_CQE_PKEY_MASK;
|
|
||||||
ibwc->wc_flags = IB_WC_GRH;
|
ibwc->wc_flags = IB_WC_GRH;
|
||||||
ibwc->byte_len = (le32_to_cpu(cqe->ud.rxlen_pkey) >>
|
ibwc->byte_len = (le32_to_cpu(cqe->ud.rxlen_pkey) >>
|
||||||
OCRDMA_CQE_UD_XFER_LEN_SHIFT);
|
OCRDMA_CQE_UD_XFER_LEN_SHIFT);
|
||||||
|
Loading…
Reference in New Issue
Block a user