Skip to content

Commit

Permalink
PCI/MSI: Return msix_capability_init() failure if populate_msi_sysfs(…
Browse files Browse the repository at this point in the history
…) fails

If populate_msi_sysfs() function failed msix_capability_init() must return
the error code, but it returns the success instead.  This update fixes the
described misbehaviour.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Tejun Heo <tj@kernel.org>
  • Loading branch information
Alexander Gordeev authored and Bjorn Helgaas committed Dec 20, 2013
1 parent 57b7cb0 commit 2adc790
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions drivers/pci/msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ static int msix_capability_init(struct pci_dev *dev,

ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
if (ret)
goto error;
goto out_avail;

/*
* Some devices require MSI-X to be enabled before we can touch the
Expand All @@ -762,10 +762,8 @@ static int msix_capability_init(struct pci_dev *dev,
msix_program_entries(dev, entries);

ret = populate_msi_sysfs(dev);
if (ret) {
ret = 0;
goto error;
}
if (ret)
goto out_free;

/* Set MSI-X enabled bits and unmask the function */
pci_intx_for_msi(dev, 0);
Expand All @@ -776,7 +774,7 @@ static int msix_capability_init(struct pci_dev *dev,

return 0;

error:
out_avail:
if (ret < 0) {
/*
* If we had some success, report the number of irqs
Expand All @@ -793,6 +791,7 @@ static int msix_capability_init(struct pci_dev *dev,
ret = avail;
}

out_free:
free_msi_irqs(dev);

return ret;
Expand Down

0 comments on commit 2adc790

Please sign in to comment.