Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Philipp Zabel <p.zabel@pengutronix.de>
To: Vincent Abriou <vincent.abriou@st.com>
Cc: alsa-devel@alsa-project.org,
	Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	Arnaud Pouliquen <arnaud.pouliquen@st.com>,
	Takashi Iwai <tiwai@suse.com>, Jyri Sarha <jsarha@ti.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>
Subject: Re: [PATCH v2] ASoc: hdmi-codec: remove HDMI device unregister
Date: Wed, 08 Feb 2017 11:40:49 +0100	[thread overview]
Message-ID: <1486550449.2309.33.camel@pengutronix.de> (raw)
In-Reply-To: <1486547221-32593-1-git-send-email-vincent.abriou@st.com>

On Wed, 2017-02-08 at 10:47 +0100, Vincent Abriou wrote:
> While unregistering the hdmi-codec, the hdmi device list must be
> cleaned up. It avoid kernel page fault when registering again the
> hdmi-codec.
> 
> Cc: Liam Girdwood <lgirdwood@gmail.com>
> Cc: Mark Brown <broonie@kernel.org>
> Cc: Jaroslav Kysela <perex@perex.cz>
> Cc: Takashi Iwai <tiwai@suse.com>
> Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> Cc: Jyri Sarha <jsarha@ti.com>
> Cc: Arnaud Pouliquen <arnaud.pouliquen@st.com>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> 
> Signed-off-by: Vincent Abriou <vincent.abriou@st.com>
> ---
> v2:
>  - add mutex to protect hdmi_device_list from concurrent accesses
>  - use of internal dev variable in the hdmi_codec_remove function
> 
>  sound/soc/codecs/hdmi-codec.c | 25 ++++++++++++++++++++++---
>  1 file changed, 22 insertions(+), 3 deletions(-)
> 
> diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
> index dc6715a..8c5ae1f 100644
> --- a/sound/soc/codecs/hdmi-codec.c
> +++ b/sound/soc/codecs/hdmi-codec.c
> @@ -32,6 +32,7 @@ struct hdmi_device {
>  };
>  #define pos_to_hdmi_device(pos)	container_of((pos), struct hdmi_device, list)
>  LIST_HEAD(hdmi_device_list);
> +static DEFINE_MUTEX(hdmi_mutex);
>  
>  #define DAI_NAME_SIZE 16
>  
> @@ -794,6 +795,7 @@ static int hdmi_codec_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	hd = NULL;
> +	mutex_lock(&hdmi_mutex);
>  	list_for_each(pos, &hdmi_device_list) {
>  		struct hdmi_device *tmp = pos_to_hdmi_device(pos);
>  
> @@ -805,13 +807,16 @@ static int hdmi_codec_probe(struct platform_device *pdev)
>  
>  	if (!hd) {
>  		hd = devm_kzalloc(dev, sizeof(*hd), GFP_KERNEL);
> -		if (!hd)
> +		if (!hd) {
> +			mutex_unlock(&hdmi_mutex);
>  			return -ENOMEM;
> +		}
>  
>  		hd->dev = dev->parent;
>  
>  		list_add_tail(&hd->list, &hdmi_device_list);
>  	}
> +	mutex_unlock(&hdmi_mutex);
>  
>  	if (hd->cnt >= ARRAY_SIZE(hdmi_dai_name)) {
>  		dev_err(dev, "too many hdmi codec are deteced\n");
> @@ -853,11 +858,25 @@ static int hdmi_codec_probe(struct platform_device *pdev)
>  
>  static int hdmi_codec_remove(struct platform_device *pdev)
>  {
> +	struct device *dev = &pdev->dev;
> +	struct list_head *pos;
>  	struct hdmi_codec_priv *hcp;
>  
> -	hcp = dev_get_drvdata(&pdev->dev);
> +	mutex_lock(&hdmi_mutex);
> +	list_for_each(pos, &hdmi_device_list) {
> +		struct hdmi_device *tmp = pos_to_hdmi_device(pos);
> +
> +		if (tmp->dev == dev->parent) {
> +			list_del(pos);
> +			break;
> +		}
> +	}
> +	mutex_unlock(&hdmi_mutex);
> +
> +	hcp = dev_get_drvdata(dev);
>  	kfree(hcp->chmap_info);
> -	snd_soc_unregister_codec(&pdev->dev);
> +	snd_soc_unregister_codec(dev);
> +
>  	return 0;
>  }

Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>

regards
Philipp

  reply	other threads:[~2017-02-08 10:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-08  9:47 [PATCH v2] ASoc: hdmi-codec: remove HDMI device unregister Vincent Abriou
2017-02-08 10:40 ` Philipp Zabel [this message]
2017-02-08 18:33 ` Mark Brown
2017-02-08 18:34 ` Applied "ASoC: hdmi-codec: remove HDMI device unregister" to the asoc tree Mark Brown

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=1486550449.2309.33.camel@pengutronix.de \
    --to=p.zabel@pengutronix.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=arnaud.pouliquen@st.com \
    --cc=broonie@kernel.org \
    --cc=jsarha@ti.com \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=lgirdwood@gmail.com \
    --cc=tiwai@suse.com \
    --cc=vincent.abriou@st.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox