diff options
author | Guoqing Jiang <guoqing.jiang@linux.dev> | 2023-11-13 14:57:13 +0300 |
---|---|---|
committer | Leon Romanovsky <leon@kernel.org> | 2023-11-15 16:58:13 +0300 |
commit | d248960941b71ebc1b62bd3241744f8a5eadc3d7 (patch) | |
tree | 5be09e8f9f67e81ffd8485589311b7ebdbcff316 /drivers/infiniband/sw | |
parent | 2109ddf032ebc57e0cd43e4378474ea6f2a378c2 (diff) | |
download | linux-d248960941b71ebc1b62bd3241744f8a5eadc3d7.tar.xz |
RDMA/siw: Remove goto lable in siw_mmap
Let's remove it since the failure case only falls through
to the useless label.
Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
Link: https://lore.kernel.org/r/20231113115726.12762-5-guoqing.jiang@linux.dev
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Diffstat (limited to 'drivers/infiniband/sw')
-rw-r--r-- | drivers/infiniband/sw/siw/siw_verbs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/infiniband/sw/siw/siw_verbs.c b/drivers/infiniband/sw/siw/siw_verbs.c index 27f7dda89e49..aad0a7d8789f 100644 --- a/drivers/infiniband/sw/siw/siw_verbs.c +++ b/drivers/infiniband/sw/siw/siw_verbs.c @@ -66,12 +66,9 @@ int siw_mmap(struct ib_ucontext *ctx, struct vm_area_struct *vma) entry = to_siw_mmap_entry(rdma_entry); rv = remap_vmalloc_range(vma, entry->address, 0); - if (rv) { + if (rv) pr_warn("remap_vmalloc_range failed: %lu, %zu\n", vma->vm_pgoff, size); - goto out; - } -out: rdma_user_mmap_entry_put(rdma_entry); return rv; |