Skip to content

Commit

Permalink
Merge branch 'pci/msi' into next
Browse files Browse the repository at this point in the history
* pci/msi:
  PCI/MSI: Fix msi_desc->affinity memory leak when freeing MSI IRQs
  • Loading branch information
Bjorn Helgaas committed Feb 21, 2017
2 parents 2bdd584 + 81efbad commit 42d87e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/msi.c
Original file line number Diff line number Diff line change
@@ -360,7 +360,7 @@ static void free_msi_irqs(struct pci_dev *dev)
}

list_del(&entry->list);
kfree(entry);
free_msi_entry(entry);
}

if (dev->msi_irq_groups) {

0 comments on commit 42d87e3

Please sign in to comment.