diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2009-01-05 14:18:06 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-01-07 16:49:45 -0500 |
commit | 124f85e6cc0290a85adb7e14cd90e96105f4f9fb (patch) | |
tree | 590016a8b3c7708466ff9b3c5c459a9170a9eb85 /drivers/scsi/qla2xxx/qla_init.c | |
parent | 1ded85e2850b7b890fb6b51241429ed685ec2763 (diff) |
[SCSI] qla2xxx: Don't fallback to interrupt-polling during re-initialization with MSI-X enabled.
ROMs in recent ISPs have MSI-X support, so it's no longer
necessary for the driver to fallback to interrupt polling during
ISP re-initialization.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_init.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 521d2158d7a9..3ec6eaca96d4 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -570,6 +570,9 @@ qla24xx_reset_risc(scsi_qla_host_t *vha) | |||
570 | } | 570 | } |
571 | 571 | ||
572 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | 572 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
573 | |||
574 | if (IS_NOPOLLING_TYPE(ha)) | ||
575 | ha->isp_ops->enable_intrs(ha); | ||
573 | } | 576 | } |
574 | 577 | ||
575 | /** | 578 | /** |