From: "Alan D. Brunelle" <Alan.Brunelle@hp.com>
To: Michael Renner <michael.renner@geizhals.at>
Cc: linux-scsi@vger.kernel.org
Subject: Re: Bad SCSI performance with 2.6.14 and Fusion-MPT
Date: Thu, 17 Nov 2005 09:53:00 -0500 [thread overview]
Message-ID: <437C994C.50206@hp.com> (raw)
In-Reply-To: <437BA45B.20809@geizhals.at>
Michael Renner wrote:
> Alan D. Brunelle wrote:
>
>> I'm seeing what looks to be the same problem (see: U320 SCSI
>> negotiation problem in Linux 2.6.13 and later implementations on LSI
>> Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI
>> (rev 08)). [[I think I have a patch (perhaps suspect, but it works
>> for me), if you're interested.]]
>
>
> Yeah, I'd like to see it. Interestingly another box with the same
> hardware setup and very slightly different .config works fine with
> 2.6.14.
>
> best regards,
> michael
>
It doesn't surprise me that a different .config or hardware change would
affect this. If I understand the problem correctly, then it depends upon
timing - and changing things (hw or sw) could affect the outcome.
The posting by
The following works for me - but as noted previously, it may be suspect
in general: I'm concerned about the indefinate delay (theoretical).
diff -ur linux-2.6.14.mm2/drivers/message/fusion/mptbase.c
linux-2.6.14.mm2.adb/drivers/message/fusion/mptbase.c
--- linux-2.6.14.mm2/drivers/message/fusion/mptbase.c 2005-11-17
09:17:15.000000000 -0500
+++ linux-2.6.14.mm2.adb/drivers/message/fusion/mptbase.c
2005-11-17 10:11:52.000000000 -0500
@@ -4994,7 +4994,9 @@
if ((mf = mpt_get_msg_frame(mpt_base_index, ioc)) == NULL) {
dcprintk((MYIOC_s_WARN_FMT "mpt_config: no msg frames!\n",
ioc->name));
- return -EAGAIN;
+ do {
+ msleep(25);
+ } while ((mf = mpt_get_msg_frame(mpt_base_index, ioc))
== NULL);
}
pReq = (Config_t *)mf;
pReq->Action = pCfg->action;
next prev parent reply other threads:[~2005-11-17 14:46 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-16 21:23 Bad SCSI performance with 2.6.14 and Fusion-MPT Alan D. Brunelle
2005-11-16 21:27 ` Michael Renner
2005-11-17 14:53 ` Alan D. Brunelle [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-11-17 21:48 Moore, Eric Dean
2005-11-17 17:58 Moore, Eric Dean
2005-11-17 18:24 ` Alan D. Brunelle
2005-11-18 7:24 ` Douglas Gilbert
2005-11-17 16:57 Moore, Eric Dean
2005-11-17 17:08 ` Alan D. Brunelle
2005-11-10 20:18 Michael Renner
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=437C994C.50206@hp.com \
--to=alan.brunelle@hp.com \
--cc=linux-scsi@vger.kernel.org \
--cc=michael.renner@geizhals.at \
/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.