lkml.org 
[lkml]   [1999]   [Jul]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subjectre: Oops in 2.2.10 with AHA-2940U2W SCSI, Yamaha 4416s CDRW
On Tue, 20 Jul 1999, Benjamin Lewis wrote:

> (gdb) l *0xc01c6fc3
> 0xc01c6fc3 is in aic7xxx_handle_scsiint (aic7xxx.c:6197).
> 6192 * we get a reset since this abort just failed.
> 6193 */
> 6194 cmd->result = 0;
> 6195 scb = NULL;

Seeing as we've already checked scb isn't NULL, my guess is that the line
above is getting executed.

> 6196 }
> 6197 if (scb->cmd == p->dev_dtr_cmnd[TARGET_INDEX(scb->cmd)])

So this oopses. Will this solve the problem? It certainly can't cause
any more problems:

diff -urN linux-2.2.10/drivers/scsi/aic7xxx.c linux/drivers/scsi/aic7xxx.c
--- linux-2.2.10/drivers/scsi/aic7xxx.c Mon Jun 14 12:31:01 1999
+++ linux/drivers/scsi/aic7xxx.c Fri Jul 23 15:30:52 1999
@@ -6194,7 +6194,7 @@
cmd->result = 0;
scb = NULL;
}
- if (scb->cmd == p->dev_dtr_cmnd[TARGET_INDEX(scb->cmd)])
+ else if (scb->cmd == p->dev_dtr_cmnd[TARGET_INDEX(scb->cmd)])
{
/*
* Turn off the needsdtr, needwdtr, and needppr bits since this device
--
Tim
Quidquid latine dictum sit, altum viditur.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:53    [W:0.112 / U:0.084 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site