]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: usb-midi: use irqsave() in USB's complete callback
authorJohn Ogness <john.ogness@linutronix.de>
Sun, 1 Jul 2018 15:28:08 +0000 (17:28 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 2 Jul 2018 13:52:23 +0000 (15:52 +0200)
commit3329f06a2eede19bd9c44d52e9c1ca30acd6143e
tree4b1103345e40008242e9b41fdd10d86d7059654b
parent3ac65aa6530f5e17d690a24ca22de6ebc3e264a8
ALSA: usb-midi: use irqsave() in USB's complete callback

The USB completion callback does not disable interrupts while acquiring
the lock. We want to remove the local_irq_disable() invocation from
__usb_hcd_giveback_urb() and therefore it is required for the callback
handler to disable the interrupts while acquiring the lock.
The callback may be invoked either in IRQ or BH context depending on the
USB host controller.
Use the _irqsave() variant of the locking primitives.

Signed-off-by: John Ogness <john.ogness@linutronix.de>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Acked-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/midi.c