Re: [PATCH v2] media: i2c: rdacm21: Fix missing media_entity_cleanup()
From: Jacopo Mondi
Date: Mon Jun 22 2026 - 03:59:11 EST
Hi Biren
On Sun, Jun 21, 2026 at 11:37:06AM +0530, Biren Pandya wrote:
> If an error occurs after media_entity_pads_init() is called, the media
> entity is left uncleaned, potentially leaking resources or leaving it
> in an invalid state. Similarly, the remove path misses the cleanup.
>
> Add media_entity_cleanup() to both the error path in rdacm21_probe()
> and the rdacm21_remove() function to ensure proper resource release.
>
> Fixes: a59f853b3b4b ("media: i2c: Add driver for RDACM21 camera module")
> Cc: stable@xxxxxxxxxxxxxxx
I wouldn't backport this. media_entity_cleanup() does nothing at the
moment and will do nothing on stable kernels as well.
It is anyway worth adding it to the driver in case in future it will
do something.
> Signed-off-by: Biren Pandya <birenpandya@xxxxxxxxx>
> ---
> drivers/media/i2c/rdacm21.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/media/i2c/rdacm21.c b/drivers/media/i2c/rdacm21.c
> index bcab462708c7..41d4242a9b58 100644
> --- a/drivers/media/i2c/rdacm21.c
> +++ b/drivers/media/i2c/rdacm21.c
> @@ -594,6 +594,7 @@ static int rdacm21_probe(struct i2c_client *client)
>
> error_free_ctrls:
> v4l2_ctrl_handler_free(&dev->ctrls);
> + media_entity_cleanup(&dev->sd.entity);
Don't you think a new label befoer error_free_ctrls: (possibile named
error_entity_cleanup) would be better ?
The code jumps to error_free_ctrls: even before calling
media_entity_pads_init().
Thanks
j
> error:
> i2c_unregister_device(dev->isp);
>
> @@ -606,6 +607,7 @@ static void rdacm21_remove(struct i2c_client *client)
>
> v4l2_async_unregister_subdev(&dev->sd);
> v4l2_ctrl_handler_free(&dev->ctrls);
> + media_entity_cleanup(&dev->sd.entity);
> i2c_unregister_device(dev->isp);
> }
>
> --
> 2.50.1 (Apple Git-155)
>