* [PATCH] ASoC: Fix DMA channel leak in imx-pcm-dma-mx2 driver.
@ 2012-01-12 11:30 Javier Martin
2012-01-17 8:19 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Javier Martin @ 2012-01-12 11:30 UTC (permalink / raw)
To: alsa-devel; +Cc: s.hauer, broonie, Javier Martin, arnaud.patard
"snd_imx_pcm_hw_params" callback can be called
several times by the user (i.e. OSS emulation)
leading to a DMA channel leak.
Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
---
sound/soc/imx/imx-pcm-dma-mx2.c | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/sound/soc/imx/imx-pcm-dma-mx2.c b/sound/soc/imx/imx-pcm-dma-mx2.c
index 43fdc24..d2bb1cb 100644
--- a/sound/soc/imx/imx-pcm-dma-mx2.c
+++ b/sound/soc/imx/imx-pcm-dma-mx2.c
@@ -88,11 +88,13 @@ static int imx_ssi_dma_alloc(struct snd_pcm_substream *substream,
iprtd->dma_data.dma_request = dma_params->dma;
/* Try to grab a DMA channel */
- dma_cap_zero(mask);
- dma_cap_set(DMA_SLAVE, mask);
- iprtd->dma_chan = dma_request_channel(mask, filter, iprtd);
- if (!iprtd->dma_chan)
- return -EINVAL;
+ if (!iprtd->dma_chan) {
+ dma_cap_zero(mask);
+ dma_cap_set(DMA_SLAVE, mask);
+ iprtd->dma_chan = dma_request_channel(mask, filter, iprtd);
+ if (!iprtd->dma_chan)
+ return -EINVAL;
+ }
switch (params_format(params)) {
case SNDRV_PCM_FORMAT_S16_LE:
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ASoC: Fix DMA channel leak in imx-pcm-dma-mx2 driver.
2012-01-12 11:30 [PATCH] ASoC: Fix DMA channel leak in imx-pcm-dma-mx2 driver Javier Martin
@ 2012-01-17 8:19 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-01-17 8:19 UTC (permalink / raw)
To: Javier Martin; +Cc: alsa-devel, broonie, arnaud.patard
On Thu, Jan 12, 2012 at 12:30:38PM +0100, Javier Martin wrote:
> "snd_imx_pcm_hw_params" callback can be called
> several times by the user (i.e. OSS emulation)
> leading to a DMA channel leak.
Then maybe this means that imx_ssi_dma_alloc is called from the wrong
place. I think it should be called from the
snd_soc_platform_driver.pcm_new callback.
Sascha
>
> Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
> ---
> sound/soc/imx/imx-pcm-dma-mx2.c | 12 +++++++-----
> 1 files changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/sound/soc/imx/imx-pcm-dma-mx2.c b/sound/soc/imx/imx-pcm-dma-mx2.c
> index 43fdc24..d2bb1cb 100644
> --- a/sound/soc/imx/imx-pcm-dma-mx2.c
> +++ b/sound/soc/imx/imx-pcm-dma-mx2.c
> @@ -88,11 +88,13 @@ static int imx_ssi_dma_alloc(struct snd_pcm_substream *substream,
> iprtd->dma_data.dma_request = dma_params->dma;
>
> /* Try to grab a DMA channel */
> - dma_cap_zero(mask);
> - dma_cap_set(DMA_SLAVE, mask);
> - iprtd->dma_chan = dma_request_channel(mask, filter, iprtd);
> - if (!iprtd->dma_chan)
> - return -EINVAL;
> + if (!iprtd->dma_chan) {
> + dma_cap_zero(mask);
> + dma_cap_set(DMA_SLAVE, mask);
> + iprtd->dma_chan = dma_request_channel(mask, filter, iprtd);
> + if (!iprtd->dma_chan)
> + return -EINVAL;
> + }
>
> switch (params_format(params)) {
> case SNDRV_PCM_FORMAT_S16_LE:
> --
> 1.7.0.4
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-17 8:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-12 11:30 [PATCH] ASoC: Fix DMA channel leak in imx-pcm-dma-mx2 driver Javier Martin
2012-01-17 8:19 ` Sascha Hauer
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).