mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* No SCSI Ultra 160 with Adaptec Controller
@ 2001-01-24  2:27 Tom Sightler
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Sightler @ 2001-01-24  2:27 UTC (permalink / raw)
  To: Linux-Kernel

Hi All,

While trying to determine why my SCSI Ultra 160 drives don't work on my Dell 
PowerApp.Web 100 I noticed this section of code:

      /*
       * This is needed to work around a sequencer bug for now.  Regardless
       * of the controller in use, if we have a Quantum drive, we need to
       * limit the speed to 80MByte/sec.  As soon as I get a fixed version
       * of the sequencer, this code will get yanked.
       */
      if(!strncmp(buffer + 8, "QUANTUM", 7) &&
         p->transinfo[tindex].goal_options )

Since this machine has Quantum drives I guess this is my problem.  Does anyone 
know if this code is still actually neccessary?  It seems it's been there a 
while.  It's dissapointing to not get full performance out of the hardware you 
have.

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

^ permalink raw reply	[flat|nested] 13+ messages in thread
* RE: No SCSI Ultra 160 with Adaptec Controller
@ 2001-01-24  4:34 Matt_Domsch
  2001-01-24  4:41 ` Matthew Jacob
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Matt_Domsch @ 2001-01-24  4:34 UTC (permalink / raw)
  To: ttsig, linux-kernel

Hi Tom.  Thanks for writing.

> Since this machine has Quantum drives I guess this is my 
> problem.  Does anyone 
> know if this code is still actually necessary?  It seems 
> it's been there a 
> while.  It's disappointing to not get full performance out of 
> the hardware you 
> have.

Yes, that code is still necessary.  There's a new aic7xxx driver by Justin
Gibbs at Adaptec which is now being beta tested which corrects this issue.
Something to note, however: the media transfer rate for those disks is at
most ~20MB/sec.  Therefore, you only exceed the 80MB/sec bus speed if you
have more than 4 disks all doing maximum I/O at the same time.  Since the
PowerApp.web 100 has at most 2 disks internally, you really shouldn't see
any significant performance difference.

Hope this helps.
Thanks for buying Dell!
Matt Domsch
Dell Linux Systems Group
Linux OS Development


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

^ permalink raw reply	[flat|nested] 13+ messages in thread
[parent not found: <CDF99E351003D311A8B0009027457F1403BF9C0F@ausxmrr501.us.dell.com>]
* RE: No SCSI Ultra 160 with Adaptec Controller
@ 2001-01-24 20:13 Nathan Black
  0 siblings, 0 replies; 13+ messages in thread
From: Nathan Black @ 2001-01-24 20:13 UTC (permalink / raw)
  To: 'Tom Sightler'; +Cc: linux-kernel

What problem are you trying to solve, I just joined the group in hopes of
finding a solution to a problem of mine.

It sounds like they may be related.
I am trying to write to a drive(raw, blank, whatever you want to call it) on
kernel 2.4.1-pre10. I get great throughput at first, but then it slows to
about 25 MB/sec. This isn't a problem except after writing a large amount of
data, the system becomes unusable. I did not say it halts, oops, or anything
like that, just extremely slow. ps takes about 10 minutes or more to
complete.(4 tasks).

I have a compaq smart array controller 2. 

Before I upgraded the kernel( I was at 2.4.0 released). I would get an oops.
and a kernel panic/halt.
I did see that running in uniprocessor mode with NMIs turned off would let
me write without problems, but I was never sure how to fix it.

Any ideas?

-----Original Message-----
From: Tom Sightler [mailto:ttsig@tuxyturvy.com]
Sent: Wednesday, January 24, 2001 3:08 PM
To: mjacob@feral.com; Matt_Domsch@dell.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: No SCSI Ultra 160 with Adaptec Controller


> Actually, aren't a number of newer drives getting upwards of 30MB/s?
>

Well, at 80MB/sec these drives are able to come in at an average of about
34MB/s across the board.

> > Therefore, you only exceed the 80MB/sec bus speed if you
> > have more than 4 disks all doing maximum I/O at the same time.  Since
the
> > PowerApp.web 100 has at most 2 disks internally, you really shouldn't
see
> > any significant performance difference.

I wouldn't dare argue that I'd get some huge performance boost, but I am
running software raid1 on multiple spindles (we have some drives attached
externally) so it should help some.
Also, this unit is doing heavy read/write of small files and the lower
latency, and
burstable transfers do help some.  I temporarily disabled that code and the
increase in IO's per second is measurable, though not earth shattering, but
I
was afraid to leave it that way because fast corrupted data is worth much
less
that only slightly slower good data.

It was really just an issue of if the code still needed to be there.
Workarounds that are put in as temporary have a tendency to never get
revisited
until someone brings them up, and on top of that they make Linux look sloppy
to
me (the same drives work correctly at Ultra160 under that other OS, or at
least appear to).  I know it
won't make a huge difference to me, but if some user has a 12 disk RAID
array
full of Quantum disks it will make a big difference to them.

Later,
Tom



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

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2001-01-24 20:27 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-01-24  2:27 No SCSI Ultra 160 with Adaptec Controller Tom Sightler
2001-01-24  4:34 Matt_Domsch
2001-01-24  4:41 ` Matthew Jacob
2001-01-24 15:37   ` John Jasen
2001-01-24 17:13     ` Matthew Jacob
2001-01-24 20:07   ` Tom Sightler
2001-01-24 20:27     ` Matt Domsch
2001-01-24  6:43 ` Tim Sullivan
2001-01-24 14:57   ` Martin Josefsson
2001-01-24 14:43 ` I Lee Hetherington
2001-01-24 15:30   ` Matt Domsch
     [not found] <CDF99E351003D311A8B0009027457F1403BF9C0F@ausxmrr501.us.dell.com>
2001-01-24 15:20 ` Tim Sullivan
2001-01-24 20:13 Nathan Black

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome