Home
last modified time | relevance | path

Searched refs:self_group (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/sound/core/
Dpcm_native.c112 mutex_lock(&substream->self_group.mutex); in __snd_pcm_stream_lock_mode()
125 spin_lock(&substream->self_group.lock); in __snd_pcm_stream_lock_mode()
134 mutex_unlock(&substream->self_group.mutex); in __snd_pcm_stream_unlock_mode()
137 spin_unlock(&substream->self_group.lock); in __snd_pcm_stream_unlock_mode()
1063 mutex_lock_nested(&s->self_group.mutex, depth); in snd_pcm_action_group()
1065 spin_lock_nested(&s->self_group.lock, depth); in snd_pcm_action_group()
1095 mutex_unlock(&s1->self_group.mutex); in snd_pcm_action_group()
1097 spin_unlock(&s1->self_group.lock); in snd_pcm_action_group()
1140 mutex_unlock(&substream->self_group.mutex); in snd_pcm_action()
1142 mutex_lock(&substream->self_group.mutex); in snd_pcm_action()
[all …]
Dpcm.c753 substream->group = &substream->self_group; in snd_pcm_new_stream()
754 spin_lock_init(&substream->self_group.lock); in snd_pcm_new_stream()
755 mutex_init(&substream->self_group.mutex); in snd_pcm_new_stream()
756 INIT_LIST_HEAD(&substream->self_group.substreams); in snd_pcm_new_stream()
757 list_add_tail(&substream->link_list, &substream->self_group.substreams); in snd_pcm_new_stream()
/Linux-v4.19/include/sound/
Dpcm.h470 …struct snd_pcm_group self_group; /* fake group for non linked substream (with substream lock insid… member
629 return substream->group != &substream->self_group; in snd_pcm_stream_linked()