diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/ehca/ehca_reqs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ehca/ehca_reqs.c b/drivers/infiniband/hw/ehca/ehca_reqs.c index acb8649151e0..cea3eba9c83e 100644 --- a/drivers/infiniband/hw/ehca/ehca_reqs.c +++ b/drivers/infiniband/hw/ehca/ehca_reqs.c | |||
@@ -680,8 +680,10 @@ repoll: | |||
680 | 680 | ||
681 | read_lock(&ehca_qp_idr_lock); | 681 | read_lock(&ehca_qp_idr_lock); |
682 | my_qp = idr_find(&ehca_qp_idr, cqe->qp_token); | 682 | my_qp = idr_find(&ehca_qp_idr, cqe->qp_token); |
683 | wc->qp = &my_qp->ib_qp; | ||
684 | read_unlock(&ehca_qp_idr_lock); | 683 | read_unlock(&ehca_qp_idr_lock); |
684 | if (!my_qp) | ||
685 | goto repoll; | ||
686 | wc->qp = &my_qp->ib_qp; | ||
685 | 687 | ||
686 | wc->byte_len = cqe->nr_bytes_transferred; | 688 | wc->byte_len = cqe->nr_bytes_transferred; |
687 | wc->pkey_index = cqe->pkey_index; | 689 | wc->pkey_index = cqe->pkey_index; |