RDMA/rxe: Allow good work requests to be executed
authorBob Pearson <rpearsonhpe@gmail.com>
Fri, 29 Mar 2024 14:55:05 +0000 (09:55 -0500)
committerJason Gunthorpe <jgg@nvidia.com>
Mon, 22 Apr 2024 19:54:32 +0000 (16:54 -0300)
A previous commit incorrectly added an 'if(!err)' before scheduling the
requester task in rxe_post_send_kernel(). But if there were send wrs
successfully added to the send queue before a bad wr they might never get
executed.

This commit fixes this by scheduling the requester task if any wqes were
successfully posted in rxe_post_send_kernel() in rxe_verbs.c.

Link: https://lore.kernel.org/r/20240329145513.35381-5-rpearsonhpe@gmail.com
Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
Fixes: 5bf944f24129 ("RDMA/rxe: Add error messages")
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/sw/rxe/rxe_verbs.c

index 614581989b38160eaa5a3e49b148d6a63148e4b1..a49784e5156c54212d2af6b727a0687540b91feb 100644 (file)
@@ -888,6 +888,7 @@ static int rxe_post_send_kernel(struct rxe_qp *qp,
 {
        int err = 0;
        unsigned long flags;
+       int good = 0;
 
        spin_lock_irqsave(&qp->sq.sq_lock, flags);
        while (ibwr) {
@@ -895,12 +896,15 @@ static int rxe_post_send_kernel(struct rxe_qp *qp,
                if (err) {
                        *bad_wr = ibwr;
                        break;
+               } else {
+                       good++;
                }
                ibwr = ibwr->next;
        }
        spin_unlock_irqrestore(&qp->sq.sq_lock, flags);
 
-       if (!err)
+       /* kickoff processing of any posted wqes */
+       if (good)
                rxe_sched_task(&qp->req.task);
 
        spin_lock_irqsave(&qp->state_lock, flags);