RDMA/rxe: Fix spelling mistake in error print
authorZhang Jiaming <jiaming@nfschina.com>
Fri, 1 Jul 2022 08:00:19 +0000 (16:00 +0800)
committerLeon Romanovsky <leonro@nvidia.com>
Thu, 21 Jul 2022 06:59:29 +0000 (09:59 +0300)
There is a spelling mistake (writeable) in function rxe_check_bind_mw.
Fix it.

Signed-off-by: Zhang Jiaming <jiaming@nfschina.com>
Reviewed-by: Bob Pearson <rpearsonhpe@gmail.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/sw/rxe/rxe_mw.c

index bb6a1ed..e148ba3 100644 (file)
@@ -115,7 +115,7 @@ static int rxe_check_bind_mw(struct rxe_qp *qp, struct rxe_send_wqe *wqe,
                      (IB_ACCESS_REMOTE_WRITE | IB_ACCESS_REMOTE_ATOMIC)) &&
                     !(mr->access & IB_ACCESS_LOCAL_WRITE))) {
                pr_err_once(
-                       "attempt to bind an writable MW to an MR without local write access\n");
+                       "attempt to bind an Writable MW to an MR without local write access\n");
                return -EINVAL;
        }