]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
[scsi] hpsa: Add IRQF_SHARED back in for the non-MSI(X) interrupt handler
authorJoe Jin <joe.jin@oracle.com>
Tue, 15 May 2012 06:41:33 +0000 (14:41 +0800)
committerJoe Jin <joe.jin@oracle.com>
Tue, 15 May 2012 06:41:33 +0000 (14:41 +0800)
Add IRQF_SHARED back in for the non-MSI(X) interrupt handler.
This backport from RHEL6U3.

Signed-off-by: Joe Jin <joe.jin@oracle.com>
drivers/scsi/hpsa.c

index 434f1eb453a62ce24952513f4f3b2053ab3b8798..fa704ccde350869ee24242d284446df2afd839e5 100644 (file)
@@ -4058,7 +4058,7 @@ static int hpsa_request_irq(struct ctlr_info *h,
                                IRQF_DISABLED, h->devname, h);
        else
                rc = request_irq(h->intr[h->intr_mode], intxhandler,
-                               IRQF_DISABLED, h->devname, h);
+                               IRQF_DISABLED | IRQF_SHARED, h->devname, h);
        if (rc) {
                dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
                       h->intr[h->intr_mode], h->devname);