RDMA/rxe: Replace pr_xxx by rxe_dbg_xxx in rxe_task.c
authorBob Pearson <rpearsonhpe@gmail.com>
Thu, 3 Nov 2022 17:10:11 +0000 (12:10 -0500)
committerJason Gunthorpe <jgg@nvidia.com>
Thu, 10 Nov 2022 19:33:06 +0000 (15:33 -0400)
Replace calls to pr_xxx() in rxe_task.c with rxe_dbg_xxx().

Link: https://lore.kernel.org/r/20221103171013.20659-14-rpearsonhpe@gmail.com
Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/sw/rxe/rxe_task.c

index 0208d83..60b90e3 100644 (file)
@@ -29,6 +29,7 @@ static void do_task(struct tasklet_struct *t)
        int cont;
        int ret;
        struct rxe_task *task = from_tasklet(task, t, tasklet);
+       struct rxe_qp *qp = (struct rxe_qp *)task->arg;
        unsigned int iterations = RXE_MAX_ITERATIONS;
 
        spin_lock_bh(&task->lock);
@@ -47,7 +48,7 @@ static void do_task(struct tasklet_struct *t)
 
        default:
                spin_unlock_bh(&task->lock);
-               pr_warn("%s failed with bad state %d\n", __func__, task->state);
+               rxe_dbg_qp(qp, "failed with bad state %d\n", task->state);
                return;
        }
 
@@ -81,8 +82,8 @@ static void do_task(struct tasklet_struct *t)
                        break;
 
                default:
-                       pr_warn("%s failed with bad state %d\n", __func__,
-                               task->state);
+                       rxe_dbg_qp(qp, "failed with bad state %d\n",
+                                       task->state);
                }
                spin_unlock_bh(&task->lock);
        } while (cont);