All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@linaro.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: linux-sound@vger.kernel.org
Subject: Re: [bug report] ASoC: audio-graph-card2: add Codec2Codec support
Date: Thu, 9 May 2024 09:49:27 +0300	[thread overview]
Message-ID: <241354da-20c4-4ef0-90f7-68d6c4ee13d4@moroto.mountain> (raw)
In-Reply-To: <87le4jall6.wl-kuninori.morimoto.gx@renesas.com>

On Thu, May 09, 2024 at 12:13:41AM +0000, Kuninori Morimoto wrote:
> 
> Hi Dan
> 
> > Hello Kuninori Morimoto,
> > 
> > Commit c3a15c92a67b ("ASoC: audio-graph-card2: add Codec2Codec
> > support") from Oct 12, 2021 (linux-next), leads to the following
> > Smatch static checker warning:
> > 
> > 	sound/soc/generic/audio-graph-card2.c:1206 graph_count_c2c()
> > 	warn: already decremented on line 1206 'lnk->kobj.kref.refcount.refs.counter'
> > 
> > sound/soc/generic/audio-graph-card2.c
> >     1194 static int graph_count_c2c(struct simple_util_priv *priv,
> >     1195                            struct device_node *lnk,
> >     1196                            struct link_info *li)
> >     1197 {
> >     1198         struct device_node *ports = of_get_parent(lnk);
> >     1199         struct device_node *port0 = lnk;
> >     1200         struct device_node *port1 = of_get_next_child(ports, lnk);
> >                                                                       ^^^
> > 
> > This calls of_node_put() on lnk.
> > 
> >     1201         struct device_node *ep0 = port_to_endpoint(port0);
> >     1202         struct device_node *ep1 = port_to_endpoint(port1);
> >     1203         struct device_node *codec0 = of_graph_get_remote_port(ep0);
> >     1204         struct device_node *codec1 = of_graph_get_remote_port(ep1);
> >     1205 
> > --> 1206         of_node_get(lnk);
> > 
> > So this of_node_get() undoes the put.  But if the reference count
> > dropped to zero then this would be a use afer free.
> 
> Thank you for pointing it.
> 
> This "lnk" is used as "port0", and of_node_get(lnk) was for it,
> but this function doesn't call of_node_put(port0).
> So yes, indeed this of_node_get() is not needed.
> Let's remove it. 

No no... of_get_next_child() will drop the reference.  It is needed.
The point is we should take the reference first before calling
of_get_next_child().

Maybe something like this:

	struct device_node *port1 = of_get_next_child(ports, of_node_get(lnk));

regards,
dan carpenter


  reply	other threads:[~2024-05-09  6:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-08 15:14 [bug report] ASoC: audio-graph-card2: add Codec2Codec support Dan Carpenter
2024-05-09  0:13 ` Kuninori Morimoto
2024-05-09  6:49   ` Dan Carpenter [this message]
2024-05-09 23:47     ` Kuninori Morimoto

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=241354da-20c4-4ef0-90f7-68d6c4ee13d4@moroto.mountain \
    --to=dan.carpenter@linaro.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=linux-sound@vger.kernel.org \
    /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.