projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e1350c
)
[SCSI] qla4xxx: initialize MSI in correct way
author
Shyam Sundar
<
[email protected]
>
Fri, 3 Dec 2010 06:12:08 +0000
(22:12 -0800)
committer
James Bottomley
<
[email protected]
>
Tue, 21 Dec 2010 18:24:35 +0000
(12:24 -0600)
IRQF_SHARED flag should not be set when calling request_irq for MSI since
this interrupt mechanism cannot be shared like standard INTx
Signed-off-by: Vikas Chaudhary <
[email protected]
>
Signed-off-by: Shyam Sundar <
[email protected]
>
Signed-off-by: Ravi Anand <
[email protected]
>
Signed-off-by: James Bottomley <
[email protected]
>
drivers/scsi/qla4xxx/ql4_isr.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/qla4xxx/ql4_isr.c
b/drivers/scsi/qla4xxx/ql4_isr.c
index 5d9575cebff93bf2d2a02291960d0a6c245f5b2a..ca862b12a8dbccf25e4f7f226583b26613250ef1 100644
(file)
--- a/
drivers/scsi/qla4xxx/ql4_isr.c
+++ b/
drivers/scsi/qla4xxx/ql4_isr.c
@@
-1077,7
+1077,7
@@
try_msi:
ret = pci_enable_msi(ha->pdev);
if (!ret) {
ret = request_irq(ha->pdev->irq, qla4_8xxx_msi_handler,
-
IRQF_SHARED
, DRIVER_NAME, ha);
+
0
, DRIVER_NAME, ha);
if (!ret) {
DEBUG2(ql4_printk(KERN_INFO, ha, "MSI: Enabled.\n"));
set_bit(AF_MSI_ENABLED, &ha->flags);