[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <229baa14-9436-a35b-8e4f-4ec5e55f6136@linaro.org>
Date: Tue, 6 Sep 2022 15:10:32 +0100
From: Srinivas Kandagatla <srinivas.kandagatla@...aro.org>
To: Abel Vesa <abel.vesa@...aro.org>,
Amol Maheshwari <amahesh@....qualcomm.com>,
Andy Gross <agross@...nel.org>,
Bjorn Andersson <andersson@...nel.org>,
Konrad Dybcio <konrad.dybcio@...ainline.org>,
Ekansh Gupta <quic_ekagupt@...cinc.com>
Cc: Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>,
Arnd Bergmann <arnd@...db.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-arm-msm@...r.kernel.org,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
devicetree@...r.kernel.org
Subject: Re: [PATCH v2 05/10] misc: fastrpc: Use fastrpc_map_put in
fastrpc_map_create on fail
On 02/09/2022 16:48, Abel Vesa wrote:
> Move the kref_init right after the allocation so that we can use
> fastrpc_map_put on any following error case.
>
> Signed-off-by: Abel Vesa <abel.vesa@...aro.org>
> ---
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@...aro.org>
> drivers/misc/fastrpc.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c
> index 6730aa324e10..5eececd9b6bd 100644
> --- a/drivers/misc/fastrpc.c
> +++ b/drivers/misc/fastrpc.c
> @@ -745,6 +745,8 @@ static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
> return -ENOMEM;
>
> INIT_LIST_HEAD(&map->node);
> + kref_init(&map->refcount);
> +
> map->fl = fl;
> map->fd = fd;
> map->buf = dma_buf_get(fd);
> @@ -771,7 +773,6 @@ static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
> map->size = len;
> map->va = sg_virt(map->table->sgl);
> map->len = len;
> - kref_init(&map->refcount);
>
> if (attr & FASTRPC_ATTR_SECUREMAP) {
> /*
> @@ -801,7 +802,7 @@ static int fastrpc_map_create(struct fastrpc_user *fl, int fd,
> attach_err:
> dma_buf_put(map->buf);
> get_err:
> - kfree(map);
> + fastrpc_map_put(map);
>
> return err;
> }
Powered by blists - more mailing lists