All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
To: Biren Pandya <birenpandya@gmail.com>
Cc: linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
	 linux-kernel@vger.kernel.org, niklas.soderlund@ragnatech.se,
	mchehab@kernel.org,  geert+renesas@glider.be,
	magnus.damm@gmail.com, laurent.pinchart@ideasonboard.com,
	 jacopo.mondi@ideasonboard.com
Subject: Re: [PATCH v3 2/4] media: renesas: csisp: Add missing media_entity_cleanup()
Date: Wed, 8 Jul 2026 17:54:34 +0200	[thread overview]
Message-ID: <ak5vspKMxPLZ6Zsi@zed> (raw)
In-Reply-To: <20260704174638.66302-8-birenpandya@gmail.com>

Hi Biren

On Sat, Jul 04, 2026 at 11:16:41PM +0530, Biren Pandya wrote:
> The probe error path and the remove function fail to call
> media_entity_cleanup() upon teardown.
>
> While currently a no-op in most cases, calling media_entity_cleanup()
> is an API requirement for entities initialized with media_entity_pads_init()
> to prevent memory leaks.
>
> Add the missing media_entity_cleanup() calls. Furthermore, introduce a
> dedicated error_entity label in the probe error path to ensure the cleanup
> is only invoked if media_entity_pads_init() has successfully completed.

Empty line please

It could be added when applying though


> Signed-off-by: Biren Pandya <birenpandya@gmail.com>
> ---
>  drivers/media/platform/renesas/rcar-isp/csisp.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/renesas/rcar-isp/csisp.c b/drivers/media/platform/renesas/rcar-isp/csisp.c
> index 8fb2cc3b5650..61558a71ee35 100644
> --- a/drivers/media/platform/renesas/rcar-isp/csisp.c
> +++ b/drivers/media/platform/renesas/rcar-isp/csisp.c
> @@ -539,7 +539,7 @@ static int risp_probe(struct platform_device *pdev)
>
>  	ret = v4l2_subdev_init_finalize(&isp->subdev);
>  	if (ret)
> -		goto error_notifier;
> +		goto error_entity;
>
>  	ret = v4l2_async_register_subdev(&isp->subdev);
>  	if (ret < 0)
> @@ -551,6 +551,8 @@ static int risp_probe(struct platform_device *pdev)
>
>  error_subdev:
>  	v4l2_subdev_cleanup(&isp->subdev);
> +error_entity:
> +	media_entity_cleanup(&isp->subdev.entity);
>  error_notifier:
>  	v4l2_async_nf_unregister(&isp->notifier);
>  	v4l2_async_nf_cleanup(&isp->notifier);
> @@ -569,6 +571,7 @@ static void risp_remove(struct platform_device *pdev)
>
>  	v4l2_async_unregister_subdev(&isp->subdev);
>  	v4l2_subdev_cleanup(&isp->subdev);
> +	media_entity_cleanup(&isp->subdev.entity);

Reviewed-by: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>

Thanks
  j
>
>  	pm_runtime_disable(&pdev->dev);
>  }
> --
> 2.50.1 (Apple Git-155)
>
>

  reply	other threads:[~2026-07-08 15:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-04 17:46 [PATCH v3 0/4] media: renesas: Fix missing media_entity_cleanup() Biren Pandya
2026-07-04 17:46 ` [PATCH v3 1/4] media: renesas: rcar-csi2: Add " Biren Pandya
2026-07-08 15:58   ` Jacopo Mondi
2026-07-04 17:46 ` [PATCH v3 2/4] media: renesas: csisp: " Biren Pandya
2026-07-08 15:54   ` Jacopo Mondi [this message]
2026-07-04 17:46 ` [PATCH v3 3/4] media: renesas: rcar-core: " Biren Pandya
2026-07-08 16:01   ` Jacopo Mondi
2026-07-04 17:46 ` [PATCH v3 4/4] media: renesas: rzg2l-core: " Biren Pandya
2026-07-08 16:02   ` Jacopo Mondi
  -- strict thread matches above, loose matches on Subject: below --
2026-06-22 17:33 [PATCH v3 0/4] media: renesas: Fix " Biren Pandya
2026-06-22 17:33 ` [PATCH v3 2/4] media: renesas: csisp: Add " Biren Pandya

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=ak5vspKMxPLZ6Zsi@zed \
    --to=jacopo.mondi@ideasonboard.com \
    --cc=birenpandya@gmail.com \
    --cc=geert+renesas@glider.be \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    --cc=mchehab@kernel.org \
    --cc=niklas.soderlund@ragnatech.se \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.