linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] soc/tegra: add of_node_put()
@ 2018-11-21 12:49 Yangtao Li
  2018-11-21 13:31 ` Jon Hunter
  0 siblings, 1 reply; 4+ messages in thread
From: Yangtao Li @ 2018-11-21 12:49 UTC (permalink / raw)
  To: thierry.reding, jonathanh; +Cc: linux-tegra, linux-kernel, Yangtao Li

of_find_node_by_path() acquires a reference to the node
returned by it and that reference needs to be dropped by its caller.
bl_idle_init() doesn't do that, so fix it.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 drivers/soc/tegra/common.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
index cd8f41351add..2e30604c9658 100644
--- a/drivers/soc/tegra/common.c
+++ b/drivers/soc/tegra/common.c
@@ -23,10 +23,13 @@ static const struct of_device_id tegra_machine_match[] = {
 bool soc_is_tegra(void)
 {
 	struct device_node *root;
+	bool rc;
 
 	root = of_find_node_by_path("/");
 	if (!root)
 		return false;
 
-	return of_match_node(tegra_machine_match, root) != NULL;
+	rc = of_match_node(tegra_machine_match, root) != NULL;
+	of_node_put(root);
+	return rc;
 }
-- 
2.17.0


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

* Re: [PATCH] soc/tegra: add of_node_put()
  2018-11-21 12:49 [PATCH] soc/tegra: add of_node_put() Yangtao Li
@ 2018-11-21 13:31 ` Jon Hunter
  2018-11-21 14:41   ` Jon Hunter
  0 siblings, 1 reply; 4+ messages in thread
From: Jon Hunter @ 2018-11-21 13:31 UTC (permalink / raw)
  To: Yangtao Li, thierry.reding; +Cc: linux-tegra, linux-kernel


On 21/11/2018 12:49, Yangtao Li wrote:
> of_find_node_by_path() acquires a reference to the node
> returned by it and that reference needs to be dropped by its caller.
> bl_idle_init() doesn't do that, so fix it.
> 
> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> ---
>  drivers/soc/tegra/common.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
> index cd8f41351add..2e30604c9658 100644
> --- a/drivers/soc/tegra/common.c
> +++ b/drivers/soc/tegra/common.c
> @@ -23,10 +23,13 @@ static const struct of_device_id tegra_machine_match[] = {
>  bool soc_is_tegra(void)
>  {
>  	struct device_node *root;
> +	bool rc;
>  
>  	root = of_find_node_by_path("/");
>  	if (!root)
>  		return false;
>  
> -	return of_match_node(tegra_machine_match, root) != NULL;
> +	rc = of_match_node(tegra_machine_match, root) != NULL;
> +	of_node_put(root);
> +	return rc;
>  }

Thanks for the fix, however, I think it would be even simpler just to
call of_machine_is_compatible() here instead.

Cheers
Jon

-- 
nvpublic

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

* Re: [PATCH] soc/tegra: add of_node_put()
  2018-11-21 13:31 ` Jon Hunter
@ 2018-11-21 14:41   ` Jon Hunter
  2018-11-21 14:44     ` Frank Lee
  0 siblings, 1 reply; 4+ messages in thread
From: Jon Hunter @ 2018-11-21 14:41 UTC (permalink / raw)
  To: Yangtao Li, thierry.reding; +Cc: linux-tegra, linux-kernel


On 21/11/2018 13:31, Jon Hunter wrote:
> 
> On 21/11/2018 12:49, Yangtao Li wrote:
>> of_find_node_by_path() acquires a reference to the node
>> returned by it and that reference needs to be dropped by its caller.
>> bl_idle_init() doesn't do that, so fix it.

The bl_idle_init() looks like a typo here.

>>
>> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
>> ---
>>  drivers/soc/tegra/common.c | 5 ++++-
>>  1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
>> index cd8f41351add..2e30604c9658 100644
>> --- a/drivers/soc/tegra/common.c
>> +++ b/drivers/soc/tegra/common.c
>> @@ -23,10 +23,13 @@ static const struct of_device_id tegra_machine_match[] = {
>>  bool soc_is_tegra(void)
>>  {
>>  	struct device_node *root;
>> +	bool rc;
>>  
>>  	root = of_find_node_by_path("/");
>>  	if (!root)
>>  		return false;
>>  
>> -	return of_match_node(tegra_machine_match, root) != NULL;
>> +	rc = of_match_node(tegra_machine_match, root) != NULL;
>> +	of_node_put(root);
>> +	return rc;
>>  }
> 
> Thanks for the fix, however, I think it would be even simpler just to
> call of_machine_is_compatible() here instead.

Right so I was wrong above about using of_machine_is_compatible, so with
the typo above fixed ...

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Cheers
Jon

-- 
nvpublic

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

* Re: [PATCH] soc/tegra: add of_node_put()
  2018-11-21 14:41   ` Jon Hunter
@ 2018-11-21 14:44     ` Frank Lee
  0 siblings, 0 replies; 4+ messages in thread
From: Frank Lee @ 2018-11-21 14:44 UTC (permalink / raw)
  To: jonathanh; +Cc: Thierry Reding, linux-tegra, linux-kernel

On Wed, Nov 21, 2018 at 10:41 PM Jon Hunter <jonathanh@nvidia.com> wrote:
>
>
> On 21/11/2018 13:31, Jon Hunter wrote:
> >
> > On 21/11/2018 12:49, Yangtao Li wrote:
> >> of_find_node_by_path() acquires a reference to the node
> >> returned by it and that reference needs to be dropped by its caller.
> >> bl_idle_init() doesn't do that, so fix it.
>
> The bl_idle_init() looks like a typo here.
Hi Jon:

Thanks. :-)

Yous,
    Yangtao
>
> >>
> >> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> >> ---
> >>  drivers/soc/tegra/common.c | 5 ++++-
> >>  1 file changed, 4 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
> >> index cd8f41351add..2e30604c9658 100644
> >> --- a/drivers/soc/tegra/common.c
> >> +++ b/drivers/soc/tegra/common.c
> >> @@ -23,10 +23,13 @@ static const struct of_device_id tegra_machine_match[] = {
> >>  bool soc_is_tegra(void)
> >>  {
> >>      struct device_node *root;
> >> +    bool rc;
> >>
> >>      root = of_find_node_by_path("/");
> >>      if (!root)
> >>              return false;
> >>
> >> -    return of_match_node(tegra_machine_match, root) != NULL;
> >> +    rc = of_match_node(tegra_machine_match, root) != NULL;
> >> +    of_node_put(root);
> >> +    return rc;
> >>  }
> >
> > Thanks for the fix, however, I think it would be even simpler just to
> > call of_machine_is_compatible() here instead.
>
> Right so I was wrong above about using of_machine_is_compatible, so with
> the typo above fixed ...
>
> Acked-by: Jon Hunter <jonathanh@nvidia.com>
>
> Cheers
> Jon
>
> --
> nvpublic

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

end of thread, other threads:[~2018-11-21 14:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-21 12:49 [PATCH] soc/tegra: add of_node_put() Yangtao Li
2018-11-21 13:31 ` Jon Hunter
2018-11-21 14:41   ` Jon Hunter
2018-11-21 14:44     ` Frank Lee

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).