aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/core/pcm_lib.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c
index 333e4dd29450..3b673e2f991d 100644
--- a/sound/core/pcm_lib.c
+++ b/sound/core/pcm_lib.c
@@ -244,18 +244,27 @@ static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream)
244 delta = new_hw_ptr - hw_ptr_interrupt; 244 delta = new_hw_ptr - hw_ptr_interrupt;
245 } 245 }
246 if (delta < 0) { 246 if (delta < 0) {
247 delta += runtime->buffer_size; 247 if (runtime->periods == 1)
248 delta += runtime->buffer_size;
248 if (delta < 0) { 249 if (delta < 0) {
249 hw_ptr_error(substream, 250 hw_ptr_error(substream,
250 "Unexpected hw_pointer value " 251 "Unexpected hw_pointer value "
251 "(stream=%i, pos=%ld, intr_ptr=%ld)\n", 252 "(stream=%i, pos=%ld, intr_ptr=%ld)\n",
252 substream->stream, (long)pos, 253 substream->stream, (long)pos,
253 (long)hw_ptr_interrupt); 254 (long)hw_ptr_interrupt);
255#if 1
256 /* simply skipping the hwptr update seems more
257 * robust in some cases, e.g. on VMware with
258 * inaccurate timer source
259 */
260 return 0; /* skip this update */
261#else
254 /* rebase to interrupt position */ 262 /* rebase to interrupt position */
255 hw_base = new_hw_ptr = hw_ptr_interrupt; 263 hw_base = new_hw_ptr = hw_ptr_interrupt;
256 /* align hw_base to buffer_size */ 264 /* align hw_base to buffer_size */
257 hw_base -= hw_base % runtime->buffer_size; 265 hw_base -= hw_base % runtime->buffer_size;
258 delta = 0; 266 delta = 0;
267#endif
259 } else { 268 } else {
260 hw_base += runtime->buffer_size; 269 hw_base += runtime->buffer_size;
261 if (hw_base >= runtime->boundary) 270 if (hw_base >= runtime->boundary)