From: Doug Ledford <dledford@redhat.com>
To: glouis@dynamicro.on.ca
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.4.1-ac4 aic7xxx driver, heads-up re possible problem
Date: Wed, 07 Feb 2001 15:30:23 -0500 [thread overview]
Message-ID: <3A81B05F.D6390DC4@redhat.com> (raw)
In-Reply-To: <20010207152737Z129027-513+3874@vger.kernel.org>
[-- Attachment #1: Type: text/plain, Size: 1609 bytes --]
glouis@dynamicro.on.ca wrote:
>
> Last night I installed 2.4.1-ac4 remotely on two machines that had been
> running -ac3. Neither was essential to production so I rebooted
> remotely to try it. One of them works fine. The other hangs at boot
> with an interrupt synch problem (sorry, but I'm away from the office and
> have only sketchy secondhand info; will reproduce Friday and supply
> details if needed). The contents of /proc/scsi/aic7xxx/0 follow for
> each (the machine that failed has been rebooted with -ac3).
> ===========================
> 2.4.1-ac4 fails to access disk, said to be an "interrupt synch
> problem," 2.4.1-ac3 running:
>
> Adaptec AIC7xxx driver version: 5.2.1/5.2.0
> Compile Options:
> TCQ Enabled By Default : Disabled
> AIC7XXX_PROC_STATS : Enabled
>
> Adapter Configuration:
> SCSI Adapter: Adaptec AHA-294X Ultra SCSI host adapter
> Ultra Wide Controller at PCI 0/11/0
There was a minor bug in the aic7xxx.seq script (actually, it was more like I
failed to take into account a limitation of the parsing program that parses
the binary sequencer code). It resulting in invalid instructions getting
downloaded to every controller prior to a 7895. The attached patch should
solve people's problems with this. (Note, this patch wasn't made against a
full linux tree, so cd into driver/scsi and use patch -p1 in order to apply
it).
--
Doug Ledford <dledford@redhat.com> http://people.redhat.com/dledford
Please check my web site for aic7xxx updates/answers before
e-mailing me about problems
[-- Attachment #2: seq.diff --]
[-- Type: text/plain, Size: 981 bytes --]
diff -U 3 -rN scsi.save/aic7xxx/aic7xxx.seq scsi/aic7xxx/aic7xxx.seq
--- scsi.save/aic7xxx/aic7xxx.seq Wed Feb 7 15:07:28 2001
+++ scsi/aic7xxx/aic7xxx.seq Wed Feb 7 15:21:06 2001
@@ -531,7 +531,8 @@
- } else { /* NOT Ultra2 */
+ } /* NOT Ultra2 */
+ if ((p->features & AHC_ULTRA2) == 0) {
diff -U 3 -rN scsi.save/aic7xxx/aic7xxx_seq.c scsi/aic7xxx/aic7xxx_seq.c
--- scsi.save/aic7xxx/aic7xxx_seq.c Wed Feb 7 15:07:28 2001
+++ scsi/aic7xxx/aic7xxx_seq.c Wed Feb 7 15:21:06 2001
@@ -776,10 +776,10 @@
{ aic7xxx_patch0_func, 88, 1, 1 },
{ aic7xxx_patch7_func, 103, 1, 2 },
{ aic7xxx_patch0_func, 104, 2, 1 },
- { aic7xxx_patch7_func, 108, 84, 15 },
+ { aic7xxx_patch7_func, 108, 84, 3 },
{ aic7xxx_patch9_func, 177, 1, 1 },
{ aic7xxx_patch9_func, 178, 4, 1 },
- { aic7xxx_patch0_func, 192, 72, 12 },
+ { aic7xxx_patch10_func, 192, 72, 12 },
{ aic7xxx_patch1_func, 192, 1, 2 },
{ aic7xxx_patch0_func, 193, 2, 1 },
{ aic7xxx_patch1_func, 200, 1, 1 },
prev parent reply other threads:[~2001-02-07 20:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-02-07 15:27 2.4.1-ac4 aic7xxx driver, heads-up re possible problem glouis
2001-02-07 20:30 ` Doug Ledford [this message]
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=3A81B05F.D6390DC4@redhat.com \
--to=dledford@redhat.com \
--cc=glouis@dynamicro.on.ca \
--cc=linux-kernel@vger.kernel.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.