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 'pci-v6.19-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci

Pull PCI fix from Bjorn Helgaas:

- Initialize rzg3s_pcie_msi_irq() MSI status bitmap before use (Claudiu
Beznea)

* tag 'pci-v6.19-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci:
PCI: rzg3s-host: Initialize MSI status bitmap before use

+1 -1
+1 -1
drivers/pci/controller/pcie-rzg3s-host.c
··· 479 479 static irqreturn_t rzg3s_pcie_msi_irq(int irq, void *data) 480 480 { 481 481 u8 regs = RZG3S_PCI_MSI_INT_NR / RZG3S_PCI_MSI_INT_PER_REG; 482 - DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR); 482 + DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR) = {0}; 483 483 struct rzg3s_pcie_host *host = data; 484 484 struct rzg3s_pcie_msi *msi = &host->msi; 485 485 unsigned long bit;