[POWERPC] mpic_pasemi_msi: Failed allocation unnoticed
bitmap_find_free_region(), called by mpic_msi_alloc_hwirqs() may return signed, but hwirq is unsigned. A failed allocation remains unnoticed. Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:

committed by
Paul Mackerras

parent
54ef0ec22a
commit
ee1a08f963
@@ -95,6 +95,7 @@ static int pasemi_msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
|
|||||||
unsigned int virq;
|
unsigned int virq;
|
||||||
struct msi_desc *entry;
|
struct msi_desc *entry;
|
||||||
struct msi_msg msg;
|
struct msi_msg msg;
|
||||||
|
int ret;
|
||||||
|
|
||||||
pr_debug("pasemi_msi_setup_msi_irqs, pdev %p nvec %d type %d\n",
|
pr_debug("pasemi_msi_setup_msi_irqs, pdev %p nvec %d type %d\n",
|
||||||
pdev, nvec, type);
|
pdev, nvec, type);
|
||||||
@@ -108,8 +109,9 @@ static int pasemi_msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
|
|||||||
* few MSIs for someone, but restrictions will apply to how the
|
* few MSIs for someone, but restrictions will apply to how the
|
||||||
* sources can be changed independently.
|
* sources can be changed independently.
|
||||||
*/
|
*/
|
||||||
hwirq = mpic_msi_alloc_hwirqs(msi_mpic, ALLOC_CHUNK);
|
ret = mpic_msi_alloc_hwirqs(msi_mpic, ALLOC_CHUNK);
|
||||||
if (hwirq < 0) {
|
hwirq = ret;
|
||||||
|
if (ret < 0) {
|
||||||
pr_debug("pasemi_msi: failed allocating hwirq\n");
|
pr_debug("pasemi_msi: failed allocating hwirq\n");
|
||||||
return hwirq;
|
return hwirq;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user