From: Takashi Iwai <tiwai@suse.de>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Cc: alsa-devel@alsa-project.org, broonie@kernel.org,
Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Subject: Re: [PATCH] ASoC: hda: increment codec device refcount when it is added to the card
Date: Fri, 31 May 2019 08:11:03 +0200 [thread overview]
Message-ID: <s5hftovtaq0.wl-tiwai@suse.de> (raw)
In-Reply-To: <684fe069-d2fb-f716-bd3e-67f0c7a52de0@linux.intel.com>
On Thu, 30 May 2019 23:00:10 +0200,
Pierre-Louis Bossart wrote:
>
>
>
> On 5/30/19 3:18 PM, Ranjani Sridharan wrote:
> > Calling snd_device_new() makes the codec devices managed by the card.
> > So, when the card is removed, the refcount for the codec
> > device is decremented and results in the codec device's kobject
> > being cleaned up if the refcount is 0. But, this leads to a NULL
> > pointer exception while attempting to remove the symlinks when the
> > codec driver is released later on. Therefore, increment the codec
> > device's refcount before adding it to the card to prevent this.
>
> Ranjani, you should add a bit of context for the rest of the list...
>
> This patch suggest a solution to a set of sightings occurring when
> removing/adding modules in a loop, and the current analysis points to
> a difference between the way the HDMI and HDaudio codecs are handled.
>
> https://github.com/thesofproject/linux/issues/981
> https://github.com/thesofproject/linux/issues/966
> https://github.com/thesofproject/linux/pull/988
>
> Since it's not SOF specific it's better to get feedback directly from
> the large ALSA community/maintainers. We probably want to focus on the
> platform-specific/vendor-specific stuff on GitHub and use the mailing
> list for such framework-level changes.
Hm, I still wonder why this doens't happen with the HDA legacy.
What is the shortest way to trigger the bug manually without a script?
thanks,
Takashi
> > Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
> > ---
> > sound/pci/hda/hda_codec.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
> > index b20eb7fc83eb..0d5d95b07e19 100644
> > --- a/sound/pci/hda/hda_codec.c
> > +++ b/sound/pci/hda/hda_codec.c
> > @@ -985,6 +985,14 @@ int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
> > codec->core.subsystem_id, codec->core.revision_id);
> > snd_component_add(card, component);
> > + /*
> > + * snd_device_new() makes the codec device managed by the card.
> > + * When the card is removed, the device reference count is
> > + * decremented. Therefore, increment it here to prevent removing
> > + * the codec device's kobject when the card is removed.
> > + */
> > + get_device(hda_codec_dev(codec));
> > +
> > err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
> > if (err < 0)
> > goto error;
> >
>
next prev parent reply other threads:[~2019-05-31 6:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-30 20:18 [PATCH] ASoC: hda: increment codec device refcount when it is added to the card Ranjani Sridharan
2019-05-30 21:00 ` Pierre-Louis Bossart
2019-05-31 6:11 ` Takashi Iwai [this message]
2019-05-31 13:18 ` Ranjani Sridharan
2019-05-31 13:25 ` Takashi Iwai
2019-05-31 13:52 ` Ranjani Sridharan
2019-05-31 14:02 ` Takashi Iwai
2019-05-31 14:28 ` Takashi Iwai
2019-05-31 15:20 ` Ranjani Sridharan
2019-05-31 15:37 ` Takashi Iwai
2019-05-31 15:43 ` Ranjani Sridharan
2019-05-31 15:45 ` Takashi Iwai
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=s5hftovtaq0.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=ranjani.sridharan@linux.intel.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.