ALSA: seq: oss: Avoid mutex lock for a long-time ioctl
authorTakashi Iwai <tiwai@suse.de>
Tue, 22 Sep 2020 08:38:56 +0000 (10:38 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 23 Sep 2020 12:45:14 +0000 (14:45 +0200)
commit2759caad2600d503c3b0ed800e7e03d2cd7a4c05
tree771848e6a38ef8556d55e6fcd653514af9bbd023
parentcdc01a1558dedcee3daee7e1802d0349a07edb87
ALSA: seq: oss: Avoid mutex lock for a long-time ioctl

Recently we applied a fix to cover the whole OSS sequencer ioctls with
the mutex for dealing with the possible races.  This works fine in
general, but in theory, this may lead to unexpectedly long stall if an
ioctl like SNDCTL_SEQ_SYNC is issued and an event with the far future
timestamp was queued.

For fixing such a potential stall, this patch changes the mutex lock
applied conditionally excluding such an ioctl command.  Also, change
the mutex_lock() with the interruptible version for user to allow
escaping from the big-hammer mutex.

Fixes: 80982c7e834e ("ALSA: seq: oss: Serialize ioctls")
Suggested-by: Pavel Machek <pavel@ucw.cz>
Link: https://lore.kernel.org/r/20200922083856.28572-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/seq/oss/seq_oss.c