linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Oded Gabbay <oded.gabbay@gmail.com>
To: Tomer Tayar <ttayar@habana.ai>
Cc: "Linux-Kernel@Vger. Kernel. Org" <linux-kernel@vger.kernel.org>,
	SW_Drivers@habana.ai
Subject: Re: [PATCH] habanalabs: Fix memory leak in error flow of context init
Date: Thu, 23 Jul 2020 17:21:22 +0300	[thread overview]
Message-ID: <CAFCwf11+ZV1no4Sew8LU3sYh7V4wO=iwmPkohob9tbnBzOA-Og@mail.gmail.com> (raw)
In-Reply-To: <20200723061757.12906-1-ttayar@habana.ai>

On Thu, Jul 23, 2020 at 9:18 AM Tomer Tayar <ttayar@habana.ai> wrote:
>
> Add a missing free of the cs_pending array in the error flow of context
> init.
>
> Fixes: 4b49c5b118b9 ("habanalabs: Use pending cs amount per asic")
>
> Signed-off-by: Tomer Tayar <ttayar@habana.ai>
> ---
>  drivers/misc/habanalabs/common/context.c | 18 ++++++++++--------
>  1 file changed, 10 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/misc/habanalabs/common/context.c b/drivers/misc/habanalabs/common/context.c
> index b75a20364fad..3e375958e73b 100644
> --- a/drivers/misc/habanalabs/common/context.c
> +++ b/drivers/misc/habanalabs/common/context.c
> @@ -138,36 +138,38 @@ int hl_ctx_init(struct hl_device *hdev, struct hl_ctx *ctx, bool is_kernel_ctx)
>                 rc = hl_mmu_ctx_init(ctx);
>                 if (rc) {
>                         dev_err(hdev->dev, "Failed to init mmu ctx module\n");
> -                       goto mem_ctx_err;
> +                       goto err_free_cs_pending;
>                 }
>         } else {
>                 ctx->asid = hl_asid_alloc(hdev);
>                 if (!ctx->asid) {
>                         dev_err(hdev->dev, "No free ASID, failed to create context\n");
> -                       return -ENOMEM;
> +                       rc = -ENOMEM;
> +                       goto err_free_cs_pending;
>                 }
>
>                 rc = hl_vm_ctx_init(ctx);
>                 if (rc) {
>                         dev_err(hdev->dev, "Failed to init mem ctx module\n");
>                         rc = -ENOMEM;
> -                       goto mem_ctx_err;
> +                       goto err_asid_free;
>                 }
>
>                 rc = hdev->asic_funcs->ctx_init(ctx);
>                 if (rc) {
>                         dev_err(hdev->dev, "ctx_init failed\n");
> -                       goto ctx_init_err;
> +                       goto err_vm_ctx_fini;
>                 }
>         }
>
>         return 0;
>
> -ctx_init_err:
> +err_vm_ctx_fini:
>         hl_vm_ctx_fini(ctx);
> -mem_ctx_err:
> -       if (ctx->asid != HL_KERNEL_ASID_ID)
> -               hl_asid_free(hdev, ctx->asid);
> +err_asid_free:
> +       hl_asid_free(hdev, ctx->asid);
> +err_free_cs_pending:
> +       kfree(ctx->cs_pending);
>
>         return rc;
>  }
> --
> 2.17.1
>
This patch is:
Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com>

      reply	other threads:[~2020-07-23 14:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-23  6:17 [PATCH] habanalabs: Fix memory leak in error flow of context init Tomer Tayar
2020-07-23 14:21 ` Oded Gabbay [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAFCwf11+ZV1no4Sew8LU3sYh7V4wO=iwmPkohob9tbnBzOA-Og@mail.gmail.com' \
    --to=oded.gabbay@gmail.com \
    --cc=SW_Drivers@habana.ai \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ttayar@habana.ai \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).