linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable
@ 2022-12-07 14:28 Anastasia Belova
  2022-12-07 14:28 ` [PATCH v2 2/2] " Anastasia Belova
  0 siblings, 1 reply; 4+ messages in thread
From: Anastasia Belova @ 2022-12-07 14:28 UTC (permalink / raw)
  To: Thomas Bogendoerfer
  Cc: Anastasia Belova, Jonathan Cameron, Randy Dunlap,
	Florian Fainelli, Maxime Bizon, Ralf Baechle, linux-mips,
	linux-kernel, lvc-project

Check clk for NULL before calling clk_enable_unlocked where clk
is dereferenced. There is such check in other implementations
of clk_enable.

Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: e7300d04bd08 ("MIPS: BCM63xx: Add support for the Broadcom BCM63xx family of SOCs.")
Signed-off-by: Anastasia Belova <abelova@astralinux.ru>
---
 arch/mips/bcm63xx/clk.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/mips/bcm63xx/clk.c b/arch/mips/bcm63xx/clk.c
index 6e6756e8fa0a..401140cf36d9 100644
--- a/arch/mips/bcm63xx/clk.c
+++ b/arch/mips/bcm63xx/clk.c
@@ -361,6 +361,9 @@ static struct clk clk_periph = {
  */
 int clk_enable(struct clk *clk)
 {
+	if (!clk)
+		return;
+
 	mutex_lock(&clocks_mutex);
 	clk_enable_unlocked(clk);
 	mutex_unlock(&clocks_mutex);
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v2 2/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable
  2022-12-07 14:28 [PATCH v2 1/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable Anastasia Belova
@ 2022-12-07 14:28 ` Anastasia Belova
  2022-12-07 15:53   ` [lvc-project] " Alexey Khoroshilov
  0 siblings, 1 reply; 4+ messages in thread
From: Anastasia Belova @ 2022-12-07 14:28 UTC (permalink / raw)
  To: Thomas Bogendoerfer
  Cc: Anastasia Belova, Jonathan Cameron, Randy Dunlap,
	Florian Fainelli, Maxime Bizon, Ralf Baechle, linux-mips,
	linux-kernel, lvc-project, kernel test robot

Errors from previous version of patch fixed.
Check clk for NULL before calling clk_enable_unlocked where clk
is dereferenced. There is such check in other implementations
of clk_enable.

Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: e7300d04bd08 ("MIPS: BCM63xx: Add support for the Broadcom BCM63xx family of SOCs.")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Anastasia Belova <abelova@astralinux.ru>
---
 arch/mips/bcm63xx/clk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/bcm63xx/clk.c b/arch/mips/bcm63xx/clk.c
index 401140cf36d9..cf303d6e6693 100644
--- a/arch/mips/bcm63xx/clk.c
+++ b/arch/mips/bcm63xx/clk.c
@@ -362,7 +362,7 @@ static struct clk clk_periph = {
 int clk_enable(struct clk *clk)
 {
 	if (!clk)
-		return;
+		return 0;
 
 	mutex_lock(&clocks_mutex);
 	clk_enable_unlocked(clk);
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [lvc-project] [PATCH v2 2/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable
  2022-12-07 14:28 ` [PATCH v2 2/2] " Anastasia Belova
@ 2022-12-07 15:53   ` Alexey Khoroshilov
  2022-12-07 18:23     ` Florian Fainelli
  0 siblings, 1 reply; 4+ messages in thread
From: Alexey Khoroshilov @ 2022-12-07 15:53 UTC (permalink / raw)
  To: Anastasia Belova, Thomas Bogendoerfer
  Cc: Florian Fainelli, lvc-project, Randy Dunlap, linux-mips,
	Ralf Baechle, linux-kernel, Jonathan Cameron, Maxime Bizon,
	kernel test robot

On 07.12.2022 17:28, Anastasia Belova wrote:
> Errors from previous version of patch fixed.
> Check clk for NULL before calling clk_enable_unlocked where clk
> is dereferenced. There is such check in other implementations
> of clk_enable.
> 
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
> Fixes: e7300d04bd08 ("MIPS: BCM63xx: Add support for the Broadcom BCM63xx family of SOCs.")
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Anastasia Belova <abelova@astralinux.ru>
> ---
>  arch/mips/bcm63xx/clk.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/bcm63xx/clk.c b/arch/mips/bcm63xx/clk.c
> index 401140cf36d9..cf303d6e6693 100644
> --- a/arch/mips/bcm63xx/clk.c
> +++ b/arch/mips/bcm63xx/clk.c
> @@ -362,7 +362,7 @@ static struct clk clk_periph = {
>  int clk_enable(struct clk *clk)
>  {
>  	if (!clk)
> -		return;
> +		return 0;
>  
>  	mutex_lock(&clocks_mutex);
>  	clk_enable_unlocked(clk);
> 

Keeping in mind that the first patch is not applied yet, it does not
make sense to fix it by the second one. It is better to fix the first
patch itself by sending the next version.

--
Alexey

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [lvc-project] [PATCH v2 2/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable
  2022-12-07 15:53   ` [lvc-project] " Alexey Khoroshilov
@ 2022-12-07 18:23     ` Florian Fainelli
  0 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2022-12-07 18:23 UTC (permalink / raw)
  To: Alexey Khoroshilov, Anastasia Belova, Thomas Bogendoerfer
  Cc: lvc-project, Randy Dunlap, linux-mips, Ralf Baechle,
	linux-kernel, Jonathan Cameron, Maxime Bizon, kernel test robot

On 12/7/22 07:53, Alexey Khoroshilov wrote:
> On 07.12.2022 17:28, Anastasia Belova wrote:
>> Errors from previous version of patch fixed.
>> Check clk for NULL before calling clk_enable_unlocked where clk
>> is dereferenced. There is such check in other implementations
>> of clk_enable.
>>
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>> Fixes: e7300d04bd08 ("MIPS: BCM63xx: Add support for the Broadcom BCM63xx family of SOCs.")
>> Reported-by: kernel test robot <lkp@intel.com>
>> Signed-off-by: Anastasia Belova <abelova@astralinux.ru>
>> ---
>>   arch/mips/bcm63xx/clk.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/arch/mips/bcm63xx/clk.c b/arch/mips/bcm63xx/clk.c
>> index 401140cf36d9..cf303d6e6693 100644
>> --- a/arch/mips/bcm63xx/clk.c
>> +++ b/arch/mips/bcm63xx/clk.c
>> @@ -362,7 +362,7 @@ static struct clk clk_periph = {
>>   int clk_enable(struct clk *clk)
>>   {
>>   	if (!clk)
>> -		return;
>> +		return 0;
>>   
>>   	mutex_lock(&clocks_mutex);
>>   	clk_enable_unlocked(clk);
>>
> 
> Keeping in mind that the first patch is not applied yet, it does not
> make sense to fix it by the second one. It is better to fix the first
> patch itself by sending the next version.

Exactly, you would to combine both patches into a single patch and send 
that as a version 3 now.
-- 
Florian


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-12-07 18:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-07 14:28 [PATCH v2 1/2] MIPS: BCM63xx: Add check for NULL for clk in clk_enable Anastasia Belova
2022-12-07 14:28 ` [PATCH v2 2/2] " Anastasia Belova
2022-12-07 15:53   ` [lvc-project] " Alexey Khoroshilov
2022-12-07 18:23     ` Florian Fainelli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).