diff options
author | Ravi Anand <ravi.anand@qlogic.com> | 2005-11-08 17:37:34 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-11-09 16:19:18 -0500 |
commit | 8d5708f3b5ea0765af92a79ebc4144c91718e695 (patch) | |
tree | 4750dac77a1baf5f7265a72fc0df1249173ba77a /drivers/scsi | |
parent | 33135aa2a568ec1a30e734f18e5315e10516e4f3 (diff) |
[SCSI] qla2xxx: Correct abort issue during loop-down state.
Correct issue where abort I/O command was not being issued
when the loop-state was down.
Signed-off-by: Ravi Anand <ravi.anand@qlogic.com>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_mbx.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index 0e963bf9c568..9746cd1e664b 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
@@ -868,10 +868,6 @@ qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp) | |||
868 | DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha->host_no);) | 868 | DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha->host_no);) |
869 | 869 | ||
870 | fcport = sp->fcport; | 870 | fcport = sp->fcport; |
871 | if (atomic_read(&ha->loop_state) == LOOP_DOWN || | ||
872 | atomic_read(&fcport->state) == FCS_DEVICE_LOST) { | ||
873 | return 1; | ||
874 | } | ||
875 | 871 | ||
876 | spin_lock_irqsave(&ha->hardware_lock, flags); | 872 | spin_lock_irqsave(&ha->hardware_lock, flags); |
877 | for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) { | 873 | for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) { |
@@ -2181,10 +2177,6 @@ qla24xx_abort_command(scsi_qla_host_t *ha, srb_t *sp) | |||
2181 | DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);) | 2177 | DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);) |
2182 | 2178 | ||
2183 | fcport = sp->fcport; | 2179 | fcport = sp->fcport; |
2184 | if (atomic_read(&ha->loop_state) == LOOP_DOWN || | ||
2185 | atomic_read(&fcport->state) == FCS_DEVICE_LOST) { | ||
2186 | return QLA_FUNCTION_FAILED; | ||
2187 | } | ||
2188 | 2180 | ||
2189 | spin_lock_irqsave(&ha->hardware_lock, flags); | 2181 | spin_lock_irqsave(&ha->hardware_lock, flags); |
2190 | for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) { | 2182 | for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) { |