Skip to content

Commit

Permalink
RDMA/rtrs-clt: Move free_permit from free_clt to rtrs_clt_close
Browse files Browse the repository at this point in the history
[ Upstream commit c46fa89 ]

Error path of rtrs_clt_open() calls free_clt(), where free_permit is
called.  This is wrong since error path of rtrs_clt_open() does not need
to call free_permit().

Also, moving free_permits() call to rtrs_clt_close(), makes it more
aligned with the call to alloc_permit() in rtrs_clt_open().

Fixes: 6a98d71 ("RDMA/rtrs: client: main functionality")
Link: https://lore.kernel.org/r/20220217030929.323849-2-haris.iqbal@ionos.com
Signed-off-by: Md Haris Iqbal <haris.iqbal@ionos.com>
Reviewed-by: Jack Wang <jinpu.wang@ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
hiqbal-ionos authored and gregkh committed Mar 2, 2022
1 parent b0ecf9e commit 0ecd3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/infiniband/ulp/rtrs/rtrs-clt.c
Expand Up @@ -2638,7 +2638,6 @@ static struct rtrs_clt *alloc_clt(const char *sessname, size_t paths_num,

static void free_clt(struct rtrs_clt *clt)
{
free_permits(clt);
free_percpu(clt->pcpu_path);

/*
Expand Down Expand Up @@ -2759,6 +2758,7 @@ void rtrs_clt_close(struct rtrs_clt *clt)
rtrs_clt_destroy_sess_files(sess, NULL);
kobject_put(&sess->kobj);
}
free_permits(clt);
free_clt(clt);
}
EXPORT_SYMBOL(rtrs_clt_close);
Expand Down

0 comments on commit 0ecd3e3

Please sign in to comment.