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.17_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Borislav Petkov:
"Remove a bogus warning introduced by the recent PCI MSI irq affinity
overhaul"

* tag 'irq_urgent_for_v5.17_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
PCI/MSI: Remove bogus warning in pci_irq_get_affinity()

+2 -1
+2 -1
drivers/pci/msi/msi.c
··· 1111 1111 if (!desc) 1112 1112 return cpu_possible_mask; 1113 1113 1114 - if (WARN_ON_ONCE(!desc->affinity)) 1114 + /* MSI[X] interrupts can be allocated without affinity descriptor */ 1115 + if (!desc->affinity) 1115 1116 return NULL; 1116 1117 1117 1118 /*