The patch titled cciss: cleanup cciss_interrupt mode has been added to the -mm tree. Its filename is cciss-cleanup-cciss_interrupt-mode.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cciss: cleanup cciss_interrupt mode From: Mike Miller <mike.miller@xxxxxx> A pretty simple cleanup for cciss_interrupt_mode. Signed-off-by: Mike Miller <mike.miller@xxxxxx> Cc: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff -puN drivers/block/cciss.c~cciss-cleanup-cciss_interrupt-mode drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-cleanup-cciss_interrupt-mode +++ a/drivers/block/cciss.c @@ -2782,23 +2782,21 @@ static void __devinit cciss_interrupt_mo if (err > 0) { printk(KERN_WARNING "cciss: only %d MSI-X vectors " "available\n", err); + goto default_int_mode; } else { printk(KERN_WARNING "cciss: MSI-X init failed %d\n", err); + goto default_int_mode; } } if (pci_find_capability(pdev, PCI_CAP_ID_MSI)) { if (!pci_enable_msi(pdev)) { - c->intr[SIMPLE_MODE_INT] = pdev->irq; c->msi_vector = 1; - return; } else { printk(KERN_WARNING "cciss: MSI init failed\n"); - c->intr[SIMPLE_MODE_INT] = pdev->irq; - return; } } - default_int_mode: +default_int_mode: #endif /* CONFIG_PCI_MSI */ /* if we get here we're going to use the default interrupt mode */ c->intr[SIMPLE_MODE_INT] = pdev->irq; _ Patches currently in -mm which might be from mike.miller@xxxxxx are cciss-version-change.patch cciss-reference-driver-support.patch cciss-increase-number-of-commands-on-controller.patch cciss-fix-pci-ssid-for-the-e500-controller.patch cciss-disable-dma-prefetch-on-p600.patch cciss-set-sector_size-to-2048-for-performance.patch cciss-set-sector_size-to-2048-for-performance-tidy.patch cciss-change-cciss_open-for-consistency.patch cciss-remove-unused-revalidate_allvol-function.patch cciss-add-support-for-1024-logical-volumes.patch cciss-cleanup-cciss_interrupt-mode.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html