Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 29040d1a authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: soc-core: fixup references at soc_cleanup_card_resources()



commit 53e947a0 ("ASoC: soc-core: merge card resources cleanup
method") merged cleanup method of snd_soc_instantiate_card() and
soc_cleanup_card_resources().

But, after this commit, if user uses unbind/bind to Component factor
drivers, Kernel might indicates refcount error at
soc_cleanup_card_resources().

The 1st reason is card->snd_card is still exist even though
snd_card_free() was called, but it is already cleaned.
We need to set NULL to it.

2nd is card->dapm and card create debugfs, but its dentry is still
exist even though it was removed. We need to set NULL to it.

Fixes: 53e947a0 ("ASoC: soc-core: merge card resources cleanup method")
Cc: stable@vger.kernel.org # for v5.1
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 34ac3c3e
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -228,7 +228,10 @@ static void soc_init_card_debugfs(struct snd_soc_card *card)


static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
{
{
	if (!card->debugfs_card_root)
		return;
	debugfs_remove_recursive(card->debugfs_card_root);
	debugfs_remove_recursive(card->debugfs_card_root);
	card->debugfs_card_root = NULL;
}
}


static void snd_soc_debugfs_init(void)
static void snd_soc_debugfs_init(void)
@@ -2039,8 +2042,10 @@ static void soc_check_tplg_fes(struct snd_soc_card *card)
static int soc_cleanup_card_resources(struct snd_soc_card *card)
static int soc_cleanup_card_resources(struct snd_soc_card *card)
{
{
	/* free the ALSA card at first; this syncs with pending operations */
	/* free the ALSA card at first; this syncs with pending operations */
	if (card->snd_card)
	if (card->snd_card) {
		snd_card_free(card->snd_card);
		snd_card_free(card->snd_card);
		card->snd_card = NULL;
	}


	/* remove and free each DAI */
	/* remove and free each DAI */
	soc_remove_dai_links(card);
	soc_remove_dai_links(card);
+3 −0
Original line number Original line Diff line number Diff line
@@ -2192,7 +2192,10 @@ static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)


static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
{
{
	if (!dapm->debugfs_dapm)
		return;
	debugfs_remove_recursive(dapm->debugfs_dapm);
	debugfs_remove_recursive(dapm->debugfs_dapm);
	dapm->debugfs_dapm = NULL;
}
}


#else
#else