Commit 2635d2a8 authored by Zhang Jiaming's avatar Zhang Jiaming Committed by Jason Gunthorpe

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.comSigned-off-by: default avatarZhang Jiaming <jiaming@nfschina.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 96938258
...@@ -851,7 +851,7 @@ static int mmap_rcvegrbufs(struct vm_area_struct *vma, ...@@ -851,7 +851,7 @@ static int mmap_rcvegrbufs(struct vm_area_struct *vma,
ret = -EPERM; ret = -EPERM;
goto bail; goto bail;
} }
/* don't allow them to later change to writeable with mprotect */ /* don't allow them to later change to writable with mprotect */
vma->vm_flags &= ~VM_MAYWRITE; vma->vm_flags &= ~VM_MAYWRITE;
start = vma->vm_start; start = vma->vm_start;
...@@ -941,7 +941,7 @@ static int mmap_kvaddr(struct vm_area_struct *vma, u64 pgaddr, ...@@ -941,7 +941,7 @@ static int mmap_kvaddr(struct vm_area_struct *vma, u64 pgaddr,
goto bail; goto bail;
} }
/* /*
* Don't allow permission to later change to writeable * Don't allow permission to later change to writable
* with mprotect. * with mprotect.
*/ */
vma->vm_flags &= ~VM_MAYWRITE; vma->vm_flags &= ~VM_MAYWRITE;
......
...@@ -587,7 +587,7 @@ static int epb_access(struct qib_devdata *dd, int sdnum, int claim) ...@@ -587,7 +587,7 @@ static int epb_access(struct qib_devdata *dd, int sdnum, int claim)
/* Need to release */ /* Need to release */
u64 pollval; u64 pollval;
/* /*
* The only writeable bits are the request and CS. * The only writable bits are the request and CS.
* Both should be clear * Both should be clear
*/ */
u64 newval = 0; u64 newval = 0;
......
...@@ -115,7 +115,7 @@ static int rxe_check_bind_mw(struct rxe_qp *qp, struct rxe_send_wqe *wqe, ...@@ -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)) && (IB_ACCESS_REMOTE_WRITE | IB_ACCESS_REMOTE_ATOMIC)) &&
!(mr->access & IB_ACCESS_LOCAL_WRITE))) { !(mr->access & IB_ACCESS_LOCAL_WRITE))) {
pr_err_once( 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; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment