devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] device property: Fix usecount for of_graph_get_port_parent()
@ 2017-07-27  9:44 Tony Lindgren
  2017-07-27 16:17 ` Mark Brown
       [not found] ` <20170727094405.19778-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 2 replies; 10+ messages in thread
From: Tony Lindgren @ 2017-07-27  9:44 UTC (permalink / raw)
  To: Frank Rowand, Grant Likely, Rob Herring
  Cc: devicetree, linux-kernel, linux-omap, Mark Brown, Takashi Iwai,
	Kuninori Morimoto, alsa-devel

Fix inconsistent use of of_graph_get_port_parent() where
asoc_simple_card_parse_graph_dai() does of_node_get() before
calling it while other callers do not. We can fix this by
not trashing the node passed to of_graph_get_port_parent().

Let's make sure the users have correct refcounts and remove
related incorrect of_node_put() calls for of_for_each_phandle
as that's done by of_phandle_iterator_next().

Let's fix both issues with a single patch to avoid kobject
refcounts getting messed up more if two patches are merged
separately.

Otherwise strange issues can happen caused by memory corruption
caused by too many kobject_del() calls such as:

BUG: sleeping function called from invalid context at
kernel/locking/mutex.c:747
...
(___might_sleep)
(__mutex_lock)
(mutex_lock_nested)
(kernfs_remove)
(kobject_del)
(kobject_put)
(of_get_next_parent)
(of_graph_get_port_parent)
(asoc_simple_card_parse_graph_dai [snd_soc_simple_card_utils])
(asoc_graph_card_probe [snd_soc_audio_graph_card])

Fixes: 0ef472a973eb ("of_graph: add of_graph_get_port_parent()")
Fixes: 2692c1c63c29 ("ASoC: add audio-graph-card support")
Fixes: 1689333f8311 ("ASoC: simple-card-utils: add asoc_simple_card_parse_graph_dai()")
Cc: Mark Brown <broonie@kernel.org>
Cc: Takashi Iwai <tiwai@suse.com>
Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: alsa-devel@alsa-project.org
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
 drivers/of/property.c                 | 9 +++++++++
 sound/soc/generic/audio-graph-card.c  | 5 +----
 sound/soc/generic/simple-card-utils.c | 5 -----
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/drivers/of/property.c b/drivers/of/property.c
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -708,6 +708,15 @@ struct device_node *of_graph_get_port_parent(struct device_node *node)
 {
 	unsigned int depth;
 
+	if (!node)
+		return NULL;
+
+	/*
+	 * Preserve usecount for passed in node as of_get_next_parent()
+	 * will do of_node_put() on it.
+	 */
+	of_node_get(node);
+
 	/* Walk 3 levels up only if there is 'ports' node. */
 	for (depth = 3; depth && node; depth--) {
 		node = of_get_next_parent(node);
diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c
--- a/sound/soc/generic/audio-graph-card.c
+++ b/sound/soc/generic/audio-graph-card.c
@@ -224,7 +224,6 @@ static int asoc_graph_card_parse_of(struct graph_card_data *priv)
 
 	of_for_each_phandle(&it, rc, node, "dais", NULL, 0) {
 		ret = asoc_graph_card_dai_link_of(it.node, priv, idx++);
-		of_node_put(it.node);
 		if (ret < 0)
 			return ret;
 	}
@@ -239,10 +238,8 @@ static int asoc_graph_get_dais_count(struct device *dev)
 	int count = 0;
 	int rc;
 
-	of_for_each_phandle(&it, rc, node, "dais", NULL, 0) {
+	of_for_each_phandle(&it, rc, node, "dais", NULL, 0)
 		count++;
-		of_node_put(it.node);
-	}
 
 	return count;
 }
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c
--- a/sound/soc/generic/simple-card-utils.c
+++ b/sound/soc/generic/simple-card-utils.c
@@ -282,11 +282,6 @@ int asoc_simple_card_parse_graph_dai(struct device_node *ep,
 	if (!dai_name)
 		return 0;
 
-	/*
-	 * of_graph_get_port_parent() will call
-	 * of_node_put(). So, call of_node_get() here
-	 */
-	of_node_get(ep);
 	node = of_graph_get_port_parent(ep);
 
 	/* Get dai->name */
-- 
2.13.2

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

end of thread, other threads:[~2017-08-01 14:16 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-27  9:44 [PATCH] device property: Fix usecount for of_graph_get_port_parent() Tony Lindgren
2017-07-27 16:17 ` Mark Brown
     [not found] ` <20170727094405.19778-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-07-27 22:18   ` Rob Herring
2017-07-28  6:01     ` Tony Lindgren
     [not found]       ` <20170728060127.GH10026-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-07-28  8:23         ` Tony Lindgren
     [not found]           ` <20170728082315.GL10026-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-07-28 22:58             ` Rob Herring
2017-07-30 20:31             ` Antonio Borneo
2017-07-31  0:55             ` [PATCH] " Kuninori Morimoto
2017-08-01 14:15           ` Mark Brown
2017-08-01 14:16           ` Applied "device property: Fix usecount for of_graph_get_port_parent()" to the asoc tree Mark Brown

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