From: Michael S. Tsirkin Date: Mon, 14 May 2007 04:26:51 +0000 (+0300) Subject: IB/mthca: Fix posting >255 recv WRs for Tavor X-Git-Tag: v2.6.22-rc2~93^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e28c56b9b67347b42ba06f9a9373b408902beee;p=profile%2Fivi%2Fkernel-x86-ivi.git IB/mthca: Fix posting >255 recv WRs for Tavor Fix posting lists of > 255 receive WRs for Tavor: rq.next_ind must be updated each doorbell, otherwise the next doorbell will use an incorrect index. Found by Ronni Zimmermann at Mellanox. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- diff --git a/drivers/infiniband/hw/mthca/mthca_qp.c b/drivers/infiniband/hw/mthca/mthca_qp.c index fee60c8..72fabb8 100644 --- a/drivers/infiniband/hw/mthca/mthca_qp.c +++ b/drivers/infiniband/hw/mthca/mthca_qp.c @@ -1862,6 +1862,7 @@ int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, dev->kar + MTHCA_RECEIVE_DOORBELL, MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); + qp->rq.next_ind = ind; qp->rq.head += MTHCA_TAVOR_MAX_WQES_PER_RECV_DB; size0 = 0; }