diff options
author | Zhang Jiaming <jiaming@nfschina.com> | 2022-07-01 15:48:12 +0800 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2022-07-04 10:14:57 -0300 |
commit | 2635d2a8d4664b665bc12e15eee88e9b1b40ae7b (patch) | |
tree | da57bdb22277db2be7acddc188e0a19aeee31771 /drivers/infiniband/sw | |
parent | 96938258b1978331448df02952c9f00d8672ec7c (diff) | |
download | linux-stable-2635d2a8d4664b665bc12e15eee88e9b1b40ae7b.tar.gz linux-stable-2635d2a8d4664b665bc12e15eee88e9b1b40ae7b.tar.bz2 linux-stable-2635d2a8d4664b665bc12e15eee88e9b1b40ae7b.zip |
IB: Fix spelling of 'writable'
There is a typo (writeable) in qib_file_ops.c, qib_sd7220.c's comments,
and in rxe_check_bind_mw()
Link: https://lore.kernel.org/r/20220701074812.12615-1-jiaming@nfschina.com
Link: https://lore.kernel.org/r/20220701080019.13329-1-jiaming@nfschina.com
Signed-off-by: Zhang Jiaming <jiaming@nfschina.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/sw')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_mw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_mw.c b/drivers/infiniband/sw/rxe/rxe_mw.c index 86e63d7dc1f3..bb6a1edaaee8 100644 --- a/drivers/infiniband/sw/rxe/rxe_mw.c +++ b/drivers/infiniband/sw/rxe/rxe_mw.c @@ -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 writeable 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; } |