From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: parisc-linux@lists.parisc-linux.org
Cc: joel.soete@freebel.net, willy@debian.org
Subject: Re: [parisc-linux] Kernel panic with -pa48
Date: Sat, 13 Oct 2001 15:51:34 -0400 [thread overview]
Message-ID: <200110131951.f9DJpZT01701@localhost.localdomain> (raw)
[-- Attachment #1: Type: text/plain, Size: 955 bytes --]
> Just co -pa49 and boot again but strange behaviour (as with pa45). Here
> the SCSI kernel messages:
I suspect this is probably a cabling/termination problem. The new driver does
fast scsi via synchronous negotiation which is much less tolerant of harware
setup than the old asynchronous SCSI. You can test this theory out by turning
off async negotiation in the driver: by recompiling, I'm afraid, I haven't
made it a config option.
If you apply the attached patch it will suppress the synchronous negotiation.
If the driver boots your machine with no issues then it's a safe bet you have
a cabling or termination problem.
Your next problem will be the C3325A drive: I have one of these and it seems
to drop tagged commands under heavy load (which annoys the SCSI error handler
no end). I was going to ask for it to be added to the SCSI mid-layer black
list as being unable to handle tags, but I haven't got around to it yet.
James
[-- Attachment #2: 53c700-no-fast.diff --]
[-- Type: text/plain , Size: 630 bytes --]
Index: drivers/scsi/53c700.c
===================================================================
RCS file: /home/jejb/CVSROOT/linux/2.4/drivers/scsi/53c700.c,v
retrieving revision 1.1.1.3.6.4
diff -u -r1.1.1.3.6.4 53c700.c
--- drivers/scsi/53c700.c 2001/09/30 15:04:17 1.1.1.3.6.4
+++ drivers/scsi/53c700.c 2001/10/13 19:46:33
@@ -720,6 +720,7 @@
NCR_700_writeb(BTB_TIMER_DISABLE, host, CTEST0_REG);
NCR_700_writeb(FULL_ARBITRATION | ENABLE_PARITY | PARITY
| AUTO_ATN, host, SCNTL0_REG);
+ hostdata->fast = 0;
} else {
NCR_700_writeb(BURST_LENGTH_8 | hostdata->dmode_extra,
host, DMODE_700_REG);
next reply other threads:[~2001-10-13 19:51 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-10-13 19:51 James Bottomley [this message]
2001-10-13 22:12 ` [parisc-linux] Kernel panic with -pa48 Grant Grundler
2001-10-14 14:28 ` James Bottomley
2001-10-14 15:42 ` Andreas Deresch
2001-10-14 16:40 ` Grant Grundler
-- strict thread matches above, loose matches on Subject: below --
2001-10-12 15:03 joel.soete
2001-10-12 15:27 ` Matthew Wilcox
2001-10-12 15:53 ` joel.soete
2001-10-12 17:42 ` joel.soete
2001-10-12 17:49 ` Matthew Wilcox
2001-10-13 19:10 ` Soete Joel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200110131951.f9DJpZT01701@localhost.localdomain \
--to=james.bottomley@hansenpartnership.com \
--cc=joel.soete@freebel.net \
--cc=parisc-linux@lists.parisc-linux.org \
--cc=willy@debian.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.