mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
RDMA/cxgb4: Fix iw_cxgb4 count_rcqes() logic
Fix another place in the code where logic dealing with the t4_cqe was using the wrong QID. This fixes the counting logic so that it tests against the SQ QID instead of the RQ QID when counting RCQES. Signed-off by: Jonathan Lallinger <jonathan@ogc.us> Signed-off by: Steve Wise <swise@ogc.us> Signed-off-by: Roland Dreier <roland@purestorage.com>
This commit is contained in:
parent
1ea6b8f489
commit
c34c97ad8c
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count)
|
||||||
while (ptr != cq->sw_pidx) {
|
while (ptr != cq->sw_pidx) {
|
||||||
cqe = &cq->sw_queue[ptr];
|
cqe = &cq->sw_queue[ptr];
|
||||||
if (RQ_TYPE(cqe) && (CQE_OPCODE(cqe) != FW_RI_READ_RESP) &&
|
if (RQ_TYPE(cqe) && (CQE_OPCODE(cqe) != FW_RI_READ_RESP) &&
|
||||||
(CQE_QPID(cqe) == wq->rq.qid) && cqe_completes_wr(cqe, wq))
|
(CQE_QPID(cqe) == wq->sq.qid) && cqe_completes_wr(cqe, wq))
|
||||||
(*count)++;
|
(*count)++;
|
||||||
if (++ptr == cq->size)
|
if (++ptr == cq->size)
|
||||||
ptr = 0;
|
ptr = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue