* PATCH [6/11] qla2xxx: ISR fixes
@ 2004-12-09 7:37 Andrew Vasquez
0 siblings, 0 replies; only message in thread
From: Andrew Vasquez @ 2004-12-09 7:37 UTC (permalink / raw)
To: James Bottomley, Linux-SCSI Mailing List; +Cc: Andrew Vasquez
ChangeSet
1.2240 04/12/08 15:44:22 andrew.vasquez@qlogic.com +1 -0
Interrupt handler fixes:
o Mark HBA offline in case the firmware cannot recover
after and ISP system-error.
o Correct issue where the loop-down-timer was not properly
being cleared during a port-update event.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
drivers/scsi/qla2xxx/qla_isr.c | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff -Nru a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
--- a/drivers/scsi/qla2xxx/qla_isr.c 2004-12-08 22:15:02 -08:00
+++ b/drivers/scsi/qla2xxx/qla_isr.c 2004-12-08 22:15:02 -08:00
@@ -376,7 +376,14 @@
qla2100_fw_dump(ha, 1);
else
qla2300_fw_dump(ha, 1);
- set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
+
+ if (mb[1] == 0) {
+ qla_printk(KERN_INFO, ha,
+ "Unrecoverable Hardware Error: adapter marked "
+ "OFFLINE!\n");
+ ha->flags.online = 0;
+ } else
+ set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
break;
case MBA_REQ_TRANSFER_ERR: /* Request Transfer Error */
@@ -583,11 +590,13 @@
}
/*
- * If PORT UPDATE is global (received LIP_OCCURRED/LIP_RESET
+ * If PORT UPDATE is global (recieved LIP_OCCURED/LIP_RESET
* event etc. earlier indicating loop is down) then process
* it. Otherwise ignore it and Wait for RSCN to come in.
*/
- if (atomic_read(&ha->loop_state) != LOOP_DOWN) {
+ atomic_set(&ha->loop_down_timer, 0);
+ if (atomic_read(&ha->loop_state) != LOOP_DOWN &&
+ atomic_read(&ha->loop_state) != LOOP_DEAD) {
DEBUG2(printk("scsi(%ld): Asynchronous PORT UPDATE "
"ignored.\n", ha->host_no));
break;
@@ -604,7 +613,6 @@
*/
atomic_set(&ha->loop_state, LOOP_UP);
- atomic_set(&ha->loop_down_timer, 0);
qla2x00_mark_all_devices_lost(ha);
ha->flags.rscn_queue_overflow = 1;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-12-09 7:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-09 7:37 PATCH [6/11] qla2xxx: ISR fixes Andrew Vasquez
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.