Skip to content

Commit

Permalink
RDMA/rtrs: server: Fix some error return code
Browse files Browse the repository at this point in the history
Fix to return negative error code -ENOMEM from the some error handling
cases instead of 0, as done elsewhere in this function.

Fixes: 9cb8374 ("RDMA/rtrs: server: main functionality")
Fixes: 91b1161 ("RDMA/rtrs: server: sysfs interface functions")
Link: https://lore.kernel.org/r/20200519091912.134358-1-weiyongjun1@huawei.com
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Danil Kipnis <danil.kipnis@cloud.ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
  • Loading branch information
Wei Yongjun authored and Jason Gunthorpe committed May 19, 2020
1 parent e198408 commit 6b31afc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ static int rtrs_srv_create_once_sysfs_root_folders(struct rtrs_srv_sess *sess)
}
srv->kobj_paths = kobject_create_and_add("paths", &srv->dev.kobj);
if (!srv->kobj_paths) {
err = -ENOMEM;
pr_err("kobject_create_and_add(): %d\n", err);
device_unregister(&srv->dev);
goto unlock;
Expand Down
8 changes: 5 additions & 3 deletions drivers/infiniband/ulp/rtrs/rtrs-srv.c
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ static int map_cont_bufs(struct rtrs_srv_sess *sess)
GFP_KERNEL, sess->s.dev->ib_dev,
DMA_TO_DEVICE, rtrs_srv_rdma_done);
if (!srv_mr->iu) {
rtrs_err(ss, "rtrs_iu_alloc(), err: %d\n",
-ENOMEM);
err = -ENOMEM;
rtrs_err(ss, "rtrs_iu_alloc(), err: %d\n", err);
goto free_iu;
}
}
Expand Down Expand Up @@ -2150,8 +2150,10 @@ static int __init rtrs_server_init(void)
goto out_chunk_pool;
}
rtrs_wq = alloc_workqueue("rtrs_server_wq", WQ_MEM_RECLAIM, 0);
if (!rtrs_wq)
if (!rtrs_wq) {
err = -ENOMEM;
goto out_dev_class;
}

return 0;

Expand Down

0 comments on commit 6b31afc

Please sign in to comment.