lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID:
 <MA0P287MB2822EBB6FE58EB4C3BFB7BC7FE5A2@MA0P287MB2822.INDP287.PROD.OUTLOOK.COM>
Date: Wed, 13 Nov 2024 08:33:54 +0800
From: Chen Wang <unicorn_wang@...look.com>
To: Ragavendra <ragavendra.bn@...il.com>, mturquette@...libre.com,
 sboyd@...nel.org, inochiama@...look.com
Cc: linux-clk@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] clk:sophgo:clk-cv18xx-pll

Pleas improve the patch title and just write "fix..." instead of listing 
the file name changed.

On 2024/11/13 6:58, Ragavendra wrote:
> Initializing the val variable of type u32 as it was not initialized.
>
Please add "Fixes" tag here, see 
https://www.kernel.org/doc/html/latest/process/submitting-patches.html.
> Signed-off-by: Ragavendra Nagraj <ragavendra.bn@...il.com>
> ---
>   drivers/clk/sophgo/clk-cv18xx-pll.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/sophgo/clk-cv18xx-pll.c b/drivers/clk/sophgo/clk-cv18xx-pll.c
> index 29e24098bf5f..04a0419cab4e 100644
> --- a/drivers/clk/sophgo/clk-cv18xx-pll.c
> +++ b/drivers/clk/sophgo/clk-cv18xx-pll.c
> @@ -87,7 +87,7 @@ static int ipll_find_rate(const struct cv1800_clk_pll_limit *limit,
>   
>   static int ipll_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
>   {
> -	u32 val;
> +	u32 val = 0;
>   	struct cv1800_clk_pll *pll = hw_to_cv1800_clk_pll(hw);
>   
>   	return ipll_find_rate(pll->pll_limit, req->best_parent_rate,

I looked at ipll_find_rate() and found that the parameters 
"rate"/"value" are both input and output parameters, which is really a 
place that needs to be treated with caution.

Seems this patch change is correct, otherwise the value of "detected" in 
the function will be random after calling ipll_find_rate here.  Actually 
I suggest adding some comments for ipll_find_rate() to emphasize it. 
Otherwise, it is easy to think that "rate" and "value" are only output 
parameters at first glance.

But I raised a question here: In ipll_find_rate(), do we really need to 
make "detected" depend on the value of external input? Inochi, can you 
please comment on this, due to you are the author of this code.

Reviewed-by: Chen Wang <unicorn_wang@...look.com>

Thanks,

Chen


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ