[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8f599fc9-99f4-462b-838d-6da2fb19fa10@intel.com>
Date: Mon, 13 May 2024 10:14:44 +0200
From: Przemek Kitszel <przemyslaw.kitszel@...el.com>
To: Chen Ni <nichen@...as.ac.cn>, <vadim.fedorenko@...ux.dev>,
<arkadiusz.kubalewski@...el.com>, <jiri@...nulli.us>
CC: <netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<davem@...emloft.net>, <jan.glaza@...el.com>
Subject: Re: [PATCH] dpll: fix return value check for kmemdup
On 5/13/24 05:28, Chen Ni wrote:
> The return value of kmemdup() is dst->freq_supported, not
> src->freq_supported. Update the check accordingly.
>
> Fixes: 830ead5fb0c5 ("dpll: fix pin dump crash for rebound module")
> Signed-off-by: Chen Ni <nichen@...as.ac.cn>
> ---
> drivers/dpll/dpll_core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/dpll/dpll_core.c b/drivers/dpll/dpll_core.c
> index d0f6693ca142..32019dc33cca 100644
> --- a/drivers/dpll/dpll_core.c
> +++ b/drivers/dpll/dpll_core.c
> @@ -449,7 +449,7 @@ static int dpll_pin_prop_dup(const struct dpll_pin_properties *src,
> sizeof(*src->freq_supported);
> dst->freq_supported = kmemdup(src->freq_supported,
> freq_size, GFP_KERNEL);
> - if (!src->freq_supported)
> + if (!dst->freq_supported)
> return -ENOMEM;
> }
> if (src->board_label) {
Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@...el.com>
Powered by blists - more mailing lists