[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20161130082221.15399-1-jiada_wang@mentor.com>
Date: Wed, 30 Nov 2016 17:22:21 +0900
From: Jiada Wang <jiada_wang@...tor.com>
To: <lars@...afoo.de>, <perex@...ex.cz>, <tiwai@...e.com>
CC: <alsa-devel@...a-project.org>, <linux-kernel@...r.kernel.org>,
<apape@...adit-jv.com>, <jiada_wang@...tor.com>
Subject: [PATCH 1/1] ALSA: SOC: DMA: increment buffer pointer atomically
From: Andreas Pape <apape@...adit-jv.com>
Setting pointer and afterwards check for wrap around leads
to the possibility of returning the inconsistent pointer position.
This patch increments buffer pointer atomically to avoid this issue.
Signed-off-by: Andreas Pape <apape@...adit-jv.com>
Signed-off-by: Jiada Wang <jiada_wang@...tor.com>
---
sound/core/pcm_dmaengine.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/sound/core/pcm_dmaengine.c b/sound/core/pcm_dmaengine.c
index 8eb58c7..6f6da11 100644
--- a/sound/core/pcm_dmaengine.c
+++ b/sound/core/pcm_dmaengine.c
@@ -139,12 +139,14 @@ EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_set_config_from_dai_data);
static void dmaengine_pcm_dma_complete(void *arg)
{
+ unsigned int new_pos;
struct snd_pcm_substream *substream = arg;
struct dmaengine_pcm_runtime_data *prtd = substream_to_prtd(substream);
- prtd->pos += snd_pcm_lib_period_bytes(substream);
- if (prtd->pos >= snd_pcm_lib_buffer_bytes(substream))
- prtd->pos = 0;
+ new_pos = prtd->pos + snd_pcm_lib_period_bytes(substream);
+ if (new_pos >= snd_pcm_lib_buffer_bytes(substream))
+ new_pos = 0;
+ prtd->pos = new_pos;
snd_pcm_period_elapsed(substream);
}
--
2.9.3
Powered by blists - more mailing lists