aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/ulp
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavoars@kernel.org>2020-05-19 11:36:12 -0500
committerJason Gunthorpe <jgg@mellanox.com>2020-05-19 20:41:41 -0300
commite19840867013f0f4081265fdb65b31e80b7bcb5b (patch)
tree5bdd5021f75e35c5b08af136974d8c7788d3ca7d /drivers/infiniband/ulp
parentRDMA/rtrs: Fix a couple off by one bugs in rtrs_srv_rdma_done() (diff)
downloadlinux-dev-e19840867013f0f4081265fdb65b31e80b7bcb5b.tar.xz
linux-dev-e19840867013f0f4081265fdb65b31e80b7bcb5b.zip
RDMA/rtrs: client: Fix function return on success
Remove the if-statement and return the value contained in _err_, unconditionally. Link: https://lore.kernel.org/r/20200519163612.GA6043@embeddedor Addresses-Coverity-ID: 1493753 ("Identical code for different branches") Fixes: 6a98d71daea1 ("RDMA/rtrs: client: main functionality") Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/ulp')
-rw-r--r--drivers/infiniband/ulp/rtrs/rtrs-clt.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/infiniband/ulp/rtrs/rtrs-clt.c b/drivers/infiniband/ulp/rtrs/rtrs-clt.c
index 96cba06e8ba7..1b98785fd8ac 100644
--- a/drivers/infiniband/ulp/rtrs/rtrs-clt.c
+++ b/drivers/infiniband/ulp/rtrs/rtrs-clt.c
@@ -1590,9 +1590,6 @@ static int create_con_cq_qp(struct rtrs_clt_con *con)
* In case of error we do not bother to clean previous allocations,
* since destroy_con_cq_qp() must be called.
*/
-
- if (err)
- return err;
return err;
}