mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
PCI MSI: Relocate error path in init_msix_capability()
Move it from the middle of the function to the end. Reviewed-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
f56e448132
commit
583871d436
@ -494,24 +494,8 @@ static int msix_capability_init(struct pci_dev *dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
|
ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
|
||||||
if (ret < 0) {
|
if (ret)
|
||||||
/* If we had some success report the number of irqs
|
goto error;
|
||||||
* we succeeded in setting up. */
|
|
||||||
int avail = 0;
|
|
||||||
list_for_each_entry(entry, &dev->msi_list, list) {
|
|
||||||
if (entry->irq != 0) {
|
|
||||||
avail++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (avail != 0)
|
|
||||||
ret = avail;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ret) {
|
|
||||||
free_msi_irqs(dev);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some devices require MSI-X to be enabled before we can touch the
|
* Some devices require MSI-X to be enabled before we can touch the
|
||||||
@ -540,6 +524,26 @@ static int msix_capability_init(struct pci_dev *dev,
|
|||||||
pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
|
pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
error:
|
||||||
|
if (ret < 0) {
|
||||||
|
/*
|
||||||
|
* If we had some success, report the number of irqs
|
||||||
|
* we succeeded in setting up.
|
||||||
|
*/
|
||||||
|
int avail = 0;
|
||||||
|
|
||||||
|
list_for_each_entry(entry, &dev->msi_list, list) {
|
||||||
|
if (entry->irq != 0)
|
||||||
|
avail++;
|
||||||
|
}
|
||||||
|
if (avail != 0)
|
||||||
|
ret = avail;
|
||||||
|
}
|
||||||
|
|
||||||
|
free_msi_irqs(dev);
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user