From: Thierry Reding <thierry.reding@gmail.com>
To: Jon Hunter <jonathanh@nvidia.com>
Cc: Frank Lee <tiny.windzz@gmail.com>,
linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] soc/tegra: refactor soc_is_tegra()
Date: Wed, 21 Nov 2018 15:56:00 +0100 [thread overview]
Message-ID: <20181121145600.GA7739@ulmo> (raw)
In-Reply-To: <bb47ae0d-3607-f396-b9e4-77e25777d6c2@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 2566 bytes --]
On Wed, Nov 21, 2018 at 02:50:54PM +0000, Jon Hunter wrote:
>
> On 21/11/2018 14:47, Frank Lee wrote:
> > On Wed, Nov 21, 2018 at 10:43 PM Thierry Reding
> > <thierry.reding@gmail.com> wrote:
> >>
> >> On Wed, Nov 21, 2018 at 02:34:57PM +0000, Jon Hunter wrote:
> >>>
> >>> On 21/11/2018 14:12, 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.soc_is_tegra()
> >>>> doesn't do that, so fix it.Call of_machine_is_compatible() to refactor
> >>>> soc_is_tegra() whcih automatically manages the reference count.
> >>>>
> >>>> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> >>>> ---
> >>>> drivers/soc/tegra/common.c | 12 +++++++-----
> >>>> 1 file changed, 7 insertions(+), 5 deletions(-)
> >>>>
> >>>> diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c
> >>>> index cd8f41351add..0b40700b672a 100644
> >>>> --- a/drivers/soc/tegra/common.c
> >>>> +++ b/drivers/soc/tegra/common.c
> >>>> @@ -22,11 +22,13 @@ static const struct of_device_id tegra_machine_match[] = {
> >>>>
> >>>> bool soc_is_tegra(void)
> >>>> {
> >>>> - struct device_node *root;
> >>>> + struct of_device_id *match = tegra_machine_match;
> >>>>
> >>>> - root = of_find_node_by_path("/");
> >>>> - if (!root)
> >>>> - return false;
> >>>> + while(match->compatible){
> >>>> + if(of_machine_is_compatible(match->compatible))
> >>>> + return true;
> >>>> + match++;
> >>>> + }
> >>>>
> >>>> - return of_match_node(tegra_machine_match, root) != NULL;
> >>>> + return false;
> >>>> }
> >>>
> >>> Ugh ... sorry, I thought that of_machine_is_compatible() looped through
> >>> the matches. OK, let's stick with your initial fix.
> >>
> >> Actually I prefer this one. Even if it is slightly more verbose, I think
> >> it's much clearer what's actually going on. Also this hides all of the
> >> OF node reference counting in a core function, so it's worth the extra
> >> line, in my opinion.
> >>
> >> Thierry
> > Hi Jon:
> >
> > I like both, how aboout you?
>
> Yes fine with me too. However, looks like there is some formatting that
> needs to be fixed up above. Please make sure you run checkpatch.pl on
> your patches. Otherwise ...
>
> Acked-by: Jon Hunter <jonathanh@nvidia.com>
>
> Thierry, pick up this version if you prefer.
Yeah, I noticed the formatting issues, but I can take care of them while
applying.
Thanks,
Thierry
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2018-11-21 14:56 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-21 14:12 [PATCH] soc/tegra: refactor soc_is_tegra() Yangtao Li
2018-11-21 14:34 ` Jon Hunter
2018-11-21 14:34 ` Jon Hunter
2018-11-21 14:43 ` Thierry Reding
2018-11-21 14:47 ` Frank Lee
2018-11-21 14:50 ` Jon Hunter
2018-11-21 14:50 ` Jon Hunter
2018-11-21 14:56 ` Thierry Reding [this message]
2018-11-21 14:57 ` Frank Lee
2018-11-21 15:28 ` Thierry Reding
2018-11-22 10:45 ` Arnd Bergmann
2018-11-22 10:49 ` Arnd Bergmann
2018-11-22 11:02 ` Frank Lee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181121145600.GA7739@ulmo \
--to=thierry.reding@gmail.com \
--cc=jonathanh@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=tiny.windzz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.