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_def.h | |
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_def.h')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index fc50221d1a99..191c95de7c67 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h | |||
@@ -2370,6 +2370,8 @@ struct qla_hw_data { | |||
2370 | IS_QLA84XX(ha)) | 2370 | IS_QLA84XX(ha)) |
2371 | #define IS_QLA2XXX_MIDTYPE(ha) (IS_QLA24XX(ha) || IS_QLA84XX(ha) || \ | 2371 | #define IS_QLA2XXX_MIDTYPE(ha) (IS_QLA24XX(ha) || IS_QLA84XX(ha) || \ |
2372 | IS_QLA25XX(ha)) | 2372 | IS_QLA25XX(ha)) |
2373 | #define IS_NOPOLLING_TYPE(ha) (IS_QLA25XX(ha) && \ | ||
2374 | (ha)->flags.msix_enabled) | ||
2373 | 2375 | ||
2374 | #define IS_IIDMA_CAPABLE(ha) ((ha)->device_type & DT_IIDMA) | 2376 | #define IS_IIDMA_CAPABLE(ha) ((ha)->device_type & DT_IIDMA) |
2375 | #define IS_FWI2_CAPABLE(ha) ((ha)->device_type & DT_FWI2) | 2377 | #define IS_FWI2_CAPABLE(ha) ((ha)->device_type & DT_FWI2) |