Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'irq_urgent_for_v5.18_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Borislav Petkov:

- Fix locking when accessing device MSI descriptors

* tag 'irq_urgent_for_v5.18_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
bus: fsl-mc-msi: Fix MSI descriptor mutex lock for msi_first_desc()

+5 -1
+5 -1
drivers/bus/fsl-mc/fsl-mc-msi.c
··· 224 224 if (error) 225 225 return error; 226 226 227 + msi_lock_descs(dev); 227 228 if (msi_first_desc(dev, MSI_DESC_ALL)) 228 - return -EINVAL; 229 + error = -EINVAL; 230 + msi_unlock_descs(dev); 231 + if (error) 232 + return error; 229 233 230 234 /* 231 235 * NOTE: Calling this function will trigger the invocation of the