[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <24dadaaf-54ec-4f3a-9c6a-9aea755d0150@redhat.com>
Date: Mon, 4 Nov 2024 13:04:34 +0100
From: Hans de Goede <hdegoede@...hat.com>
To: Li Huafei <lihuafei1@...wei.com>, mchehab@...nel.org, alan@...ux.intel.com
Cc: andy@...nel.org, sakari.ailus@...ux.intel.com,
gregkh@...uxfoundation.org, linux-media@...r.kernel.org,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] media: atomisp: Add check for rgby_data memory
allocation failure
Hi,
On 4-Nov-24 3:50 PM, Li Huafei wrote:
> In ia_css_3a_statistics_allocate(), there is no check on the allocation
> result of the rgby_data memory. If rgby_data is not successfully
> allocated, it may trigger the assert(host_stats->rgby_data) assertion in
> ia_css_s3a_hmem_decode(). Adding a check to fix this potential issue.
>
> Fixes: a49d25364dfb ("staging/atomisp: Add support for the Intel IPU v2")
> Signed-off-by: Li Huafei <lihuafei1@...wei.com>
Thank you for your patch(es).
I have merged this/these in my media-atomisp branch:
https://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux.git/log/?h=media-atomisp
And this/these will be included in my next pull-request to
Mauro (to media subsystem maintainer)
Regards,
Hans
> ---
> Changes in v2:
> - Corrects the "Fixes" tag.
> ---
> drivers/staging/media/atomisp/pci/sh_css_params.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/staging/media/atomisp/pci/sh_css_params.c b/drivers/staging/media/atomisp/pci/sh_css_params.c
> index 232744973ab8..b1feb6f6ebe8 100644
> --- a/drivers/staging/media/atomisp/pci/sh_css_params.c
> +++ b/drivers/staging/media/atomisp/pci/sh_css_params.c
> @@ -4181,6 +4181,8 @@ ia_css_3a_statistics_allocate(const struct ia_css_3a_grid_info *grid)
> goto err;
> /* No weighted histogram, no structure, treat the histogram data as a byte dump in a byte array */
> me->rgby_data = kvmalloc(sizeof_hmem(HMEM0_ID), GFP_KERNEL);
> + if (!me->rgby_data)
> + goto err;
>
> IA_CSS_LEAVE("return=%p", me);
> return me;
Powered by blists - more mailing lists