mirror of
https://github.com/torvalds/linux.git
synced 2026-09-12 20:53:03 +02:00
ALSA: pcxhr: initialize mutexes before requesting threaded IRQ
pcxhr_probe() requests pcxhr_threaded_irq() before initializing
mgr->lock, even though the threaded handler takes that mutex.
Initialize the manager locks before request_threaded_irq() so an
early interrupt cannot run against uninitialized mutex state during
probe.
Fixes: 9bef72bdb2 ("ALSA: pcxhr: Use nonatomic PCM ops")
Cc: stable@vger.kernel.org
Signed-off-by: Runyu Xiao <runyu.xiao@seu.edu.cn>
Link: https://patch.msgid.link/20260818144717.2269918-1-runyu.xiao@seu.edu.cn
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
c139e7e44f
commit
6c97817e20
|
|
@ -1535,6 +1535,13 @@ static int pcxhr_probe(struct pci_dev *pci,
|
|||
mgr->pci = pci;
|
||||
mgr->irq = -1;
|
||||
|
||||
/* ISR lock */
|
||||
mutex_init(&mgr->lock);
|
||||
mutex_init(&mgr->msg_lock);
|
||||
|
||||
/* init setup mutex*/
|
||||
mutex_init(&mgr->setup_mutex);
|
||||
|
||||
if (request_threaded_irq(pci->irq, pcxhr_interrupt,
|
||||
pcxhr_threaded_irq, IRQF_SHARED,
|
||||
KBUILD_MODNAME, mgr)) {
|
||||
|
|
@ -1548,13 +1555,6 @@ static int pcxhr_probe(struct pci_dev *pci,
|
|||
"Digigram at 0x%lx & 0x%lx, 0x%lx irq %i",
|
||||
mgr->port[0], mgr->port[1], mgr->port[2], mgr->irq);
|
||||
|
||||
/* ISR lock */
|
||||
mutex_init(&mgr->lock);
|
||||
mutex_init(&mgr->msg_lock);
|
||||
|
||||
/* init setup mutex*/
|
||||
mutex_init(&mgr->setup_mutex);
|
||||
|
||||
mgr->prmh = kmalloc(sizeof(*mgr->prmh) +
|
||||
sizeof(u32) * (PCXHR_SIZE_MAX_LONG_STATUS -
|
||||
PCXHR_SIZE_MAX_STATUS),
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user