]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: firewire: Clean up a locking issue in copy_resp_to_buf()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 13 Nov 2020 10:12:41 +0000 (13:12 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 24 Nov 2020 12:39:07 +0000 (13:39 +0100)
commit6e0d4970139835f55e9762225bfdc4656aef2c35
treec53e502dce9400f6c2dd8b8a4cc897bd6cae155a
parent1f1cc0b0ba3ac8b5c719bdf1a4952889dfd9b593
ALSA: firewire: Clean up a locking issue in copy_resp_to_buf()

commit 02a9c6ee4183af2e438454c55098b828a96085fb upstream.

The spin_lock/unlock_irq() functions cannot be nested.  The problem is
that presumably we would want the IRQs to be re-enabled on the second
call the spin_unlock_irq() but instead it will be enabled at the first
call so IRQs will be enabled earlier than expected.

In this situation the copy_resp_to_buf() function is only called from
one function and it is called with IRQs disabled.  We can just use
the regular spin_lock/unlock() functions.

Fixes: 555e8a8f7f14 ("ALSA: fireworks: Add command/response functionality into hwdep interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20201113101241.GB168908@mwanda
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/firewire/fireworks/fireworks_transaction.c