aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@perex.cz>2010-01-21 04:32:15 -0500
committerJaroslav Kysela <perex@perex.cz>2010-01-21 04:32:15 -0500
commitc91a988dc6551c66418690e36b2a23cdb0255da8 (patch)
treecbb408377b15488d4b45feb2f3d88a616f159814 /include/sound
parentd1db38c015a392b0ea8c15ab95abb3ee768b8d47 (diff)
ALSA: pcm_core: Fix wake_up() optimization
This change fixes the "ALSA: pcm_lib - optimize wake_up() calls for PCM I/O" commit. New sleeping queue is introduced to separate user space and kernel space wake_ups. runtime->nowake is renamed to twake (transfer wake). Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/pcm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sound/pcm.h b/include/sound/pcm.h
index e26fb3c58037..3bc9bca771ec 100644
--- a/include/sound/pcm.h
+++ b/include/sound/pcm.h
@@ -311,8 +311,9 @@ struct snd_pcm_runtime {
311 struct snd_pcm_mmap_control *control; 311 struct snd_pcm_mmap_control *control;
312 312
313 /* -- locking / scheduling -- */ 313 /* -- locking / scheduling -- */
314 unsigned int nowake: 1; /* no wakeup (data-copy in progress) */ 314 unsigned int twake: 1; /* do transfer (!poll) wakeup */
315 wait_queue_head_t sleep; 315 wait_queue_head_t sleep; /* poll sleep */
316 wait_queue_head_t tsleep; /* transfer sleep */
316 struct fasync_struct *fasync; 317 struct fasync_struct *fasync;
317 318
318 /* -- private section -- */ 319 /* -- private section -- */