[alsa-devel] [PATCH 8/9] ALSA: compress: call pointer callback and updates under a lock
Takashi Iwai
tiwai at suse.de
Tue Aug 27 12:31:33 CEST 2013
At Tue, 27 Aug 2013 12:10:38 +0530,
Vinod Koul wrote:
>
> to prevent racy claculations as multiple threads can invoke and update values
Why a new lock? Can't it be the same lock?
Takashi
> While at it give some emptylines in code to improve readablity
>
> Signed-off-by: Vinod Koul <vinod.koul at intel.com>
> ---
> include/sound/compress_driver.h | 2 ++
> sound/core/compress_offload.c | 13 +++++++++++++
> 2 files changed, 15 insertions(+), 0 deletions(-)
>
> diff --git a/include/sound/compress_driver.h b/include/sound/compress_driver.h
> index 9031a26..30258f3 100644
> --- a/include/sound/compress_driver.h
> +++ b/include/sound/compress_driver.h
> @@ -48,6 +48,7 @@ struct snd_compr_ops;
> * the ring buffer
> * @total_bytes_transferred: cumulative bytes transferred by offload DSP
> * @sleep: poll sleep
> + * @pointer_lock: lock used for buffer pointer update
> */
> struct snd_compr_runtime {
> snd_pcm_state_t state;
> @@ -60,6 +61,7 @@ struct snd_compr_runtime {
> u64 total_bytes_transferred;
> wait_queue_head_t sleep;
> void *private_data;
> + struct mutex pointer_lock;
> };
>
> /**
> diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c
> index 898a1d9..01b179f 100644
> --- a/sound/core/compress_offload.c
> +++ b/sound/core/compress_offload.c
> @@ -122,6 +122,7 @@ static int snd_compr_open(struct inode *inode, struct file *f)
> return -ENOMEM;
> }
> runtime->state = SNDRV_PCM_STATE_OPEN;
> + mutex_init(&runtime->pointer_lock);
> init_waitqueue_head(&runtime->sleep);
> data->stream.runtime = runtime;
> f->private_data = (void *)data;
> @@ -151,13 +152,21 @@ static int snd_compr_update_tstamp(struct snd_compr_stream *stream,
> {
> if (!stream->ops->pointer)
> return -ENOTSUPP;
> +
> + mutex_lock(&stream->runtime->pointer_lock);
> +
> stream->ops->pointer(stream, tstamp);
> +
> pr_debug("dsp consumed till %d total %d bytes\n",
> tstamp->byte_offset, tstamp->copied_total);
> +
> if (stream->direction == SND_COMPRESS_PLAYBACK)
> stream->runtime->total_bytes_transferred = tstamp->copied_total;
> else
> stream->runtime->total_bytes_available = tstamp->copied_total;
> +
> + mutex_unlock(&stream->runtime->pointer_lock);
> +
> return 0;
> }
>
> @@ -165,7 +174,9 @@ static size_t snd_compr_calc_avail(struct snd_compr_stream *stream,
> struct snd_compr_avail *avail)
> {
> memset(avail, 0, sizeof(*avail));
> +
> snd_compr_update_tstamp(stream, &avail->tstamp);
> +
> /* Still need to return avail even if tstamp can't be filled in */
>
> if (stream->runtime->total_bytes_available == 0 &&
> @@ -174,9 +185,11 @@ static size_t snd_compr_calc_avail(struct snd_compr_stream *stream,
> pr_debug("detected init and someone forgot to do a write\n");
> return stream->runtime->buffer_size;
> }
> +
> pr_debug("app wrote %lld, DSP consumed %lld\n",
> stream->runtime->total_bytes_available,
> stream->runtime->total_bytes_transferred);
> +
> if (stream->runtime->total_bytes_available ==
> stream->runtime->total_bytes_transferred) {
> if (stream->direction == SND_COMPRESS_PLAYBACK) {
> --
> 1.7.0.4
>
More information about the Alsa-devel
mailing list