]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: seq: Use bool for snd_seq_queue internal flags
authorTakashi Iwai <tiwai@suse.de>
Sun, 6 Dec 2020 08:34:56 +0000 (09:34 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 Jan 2021 13:45:00 +0000 (14:45 +0100)
commit2c8ccc3052d83f84729b0173863677ce4066d151
tree66c58668c16d8364428b986d6dbe313c50c22406
parentfd4f2a5151e6c6294169d983303c485beade5b37
ALSA: seq: Use bool for snd_seq_queue internal flags

commit 4ebd47037027c4beae99680bff3b20fdee5d7c1e upstream.

The snd_seq_queue struct contains various flags in the bit fields.
Those are categorized to two different use cases, both of which are
protected by different spinlocks.  That implies that there are still
potential risks of the bad operations for bit fields by concurrent
accesses.

For addressing the problem, this patch rearranges those flags to be
a standard bool instead of a bit field.

Reported-by: syzbot+63cbe31877bb80ef58f5@syzkaller.appspotmail.com
Link: https://lore.kernel.org/r/20201206083456.21110-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/core/seq/seq_queue.h