linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BK PATCHES] libata fixes
@ 2003-11-08 17:26 Jeff Garzik
  2003-11-08 20:16 ` Sergey Vlasov
  2003-11-10  9:52 ` Success with Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes) Oliver M. Bolzer
  0 siblings, 2 replies; 8+ messages in thread
From: Jeff Garzik @ 2003-11-08 17:26 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel


Linus, please do a

	bk pull bk://gkernel.bkbits.net/libata-2.5

This will update the following files:

 drivers/scsi/libata.h       |    2 +-
 drivers/scsi/sata_promise.c |   18 ++++++++++++++----
 2 files changed, 15 insertions(+), 5 deletions(-)

through these ChangeSets:

<jgarzik@redhat.com> (03/11/07 1.1417)
   [libata] fix Promise PCI posting bugs

<jgarzik@redhat.com> (03/11/06 1.1416)
   [libata] bump libata version

<jgarzik@redhat.com> (03/11/06 1.1415)
   [libata] fix ugly Promise interrupt masking bug


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

* Re: [BK PATCHES] libata fixes
  2003-11-08 17:26 [BK PATCHES] libata fixes Jeff Garzik
@ 2003-11-08 20:16 ` Sergey Vlasov
  2003-11-08 20:23   ` Jeff Garzik
  2003-11-10  9:52 ` Success with Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes) Oliver M. Bolzer
  1 sibling, 1 reply; 8+ messages in thread
From: Sergey Vlasov @ 2003-11-08 20:16 UTC (permalink / raw)
  To: linux-kernel

(Not about this particular libata update)

static void __init quirk_intel_ide_combined(struct pci_dev *pdev)
...
	{ PCI_FIXUP_FINAL,      PCI_VENDOR_ID_INTEL,    PCI_ANY_ID,
	  quirk_intel_ide_combined },

Won't this oops if some Intel device would be hotplugged?  A similar
problem with quirk_via_bridge was just fixed.



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

* Re: [BK PATCHES] libata fixes
  2003-11-08 20:16 ` Sergey Vlasov
@ 2003-11-08 20:23   ` Jeff Garzik
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Garzik @ 2003-11-08 20:23 UTC (permalink / raw)
  To: Sergey Vlasov; +Cc: linux-kernel

Sergey Vlasov wrote:
> (Not about this particular libata update)
> 
> static void __init quirk_intel_ide_combined(struct pci_dev *pdev)
> ...
> 	{ PCI_FIXUP_FINAL,      PCI_VENDOR_ID_INTEL,    PCI_ANY_ID,
> 	  quirk_intel_ide_combined },
> 
> Won't this oops if some Intel device would be hotplugged?  A similar
> problem with quirk_via_bridge was just fixed.


We should probably start marking entries as "no hotplug" because many of 
the quirks have no need to be run after initial boot.

	Jeff




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

* Success with  Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes)
  2003-11-08 17:26 [BK PATCHES] libata fixes Jeff Garzik
  2003-11-08 20:16 ` Sergey Vlasov
@ 2003-11-10  9:52 ` Oliver M. Bolzer
  2003-11-10 16:26   ` Jeff Garzik
  1 sibling, 1 reply; 8+ messages in thread
From: Oliver M. Bolzer @ 2003-11-10  9:52 UTC (permalink / raw)
  To: linux-kernel

On Sat, Nov 08, 2003 at 12:26:21PM -0500, Jeff Garzik <jgarzik@pobox.com> wrote...
 
> <jgarzik@redhat.com> (03/11/06 1.1415)
>    [libata] fix ugly Promise interrupt masking bug

This solved the last outstanding problem with the 4th drive and the
driver seems to find all drives and properly boot off them, at least
in a situation where no RAID-functionalty of the card is used. Great
Work.

# A first quick run of bonnie++ seems to show 2.6.0-test9+libata several
# %s slower then 2.4.22+ft3xx, but that might be related to differences
# between 2.4 and 2.6.

-- 
	Oliver M. Bolzer
	oliver@gol.com

GPG (PGP) Fingerprint = 621B 52F6 2AC1 36DB 8761  018F 8786 87AD EF50 D1FF

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

* Re: Success with  Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes)
  2003-11-10  9:52 ` Success with Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes) Oliver M. Bolzer
@ 2003-11-10 16:26   ` Jeff Garzik
  2003-11-10 17:26     ` Oliver M. Bolzer
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Garzik @ 2003-11-10 16:26 UTC (permalink / raw)
  To: Oliver M. Bolzer; +Cc: linux-kernel

Oliver M. Bolzer wrote:
> On Sat, Nov 08, 2003 at 12:26:21PM -0500, Jeff Garzik <jgarzik@pobox.com> wrote...
>  
> 
>><jgarzik@redhat.com> (03/11/06 1.1415)
>>   [libata] fix ugly Promise interrupt masking bug
> 
> 
> This solved the last outstanding problem with the 4th drive and the
> driver seems to find all drives and properly boot off them, at least
> in a situation where no RAID-functionalty of the card is used. Great
> Work.

Thanks for testing.


> # A first quick run of bonnie++ seems to show 2.6.0-test9+libata several
> # %s slower then 2.4.22+ft3xx, but that might be related to differences
> # between 2.4 and 2.6.

One possibility is that queueing is not yet enabled in my sata_promise 
driver.  Several of the SATA drivers support having multiple commands 
outstanding per driver (tagged command queueing), but I need to do a bit 
more work before I can enable queueing in the core.

	Jeff



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

* Re: Success with  Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes)
  2003-11-10 16:26   ` Jeff Garzik
@ 2003-11-10 17:26     ` Oliver M. Bolzer
  2003-11-10 18:35       ` Jeff Garzik
  0 siblings, 1 reply; 8+ messages in thread
From: Oliver M. Bolzer @ 2003-11-10 17:26 UTC (permalink / raw)
  To: linux-kernel

On Mon, Nov 10, 2003 at 11:26:16AM -0500, Jeff Garzik <jgarzik@pobox.com> wrote...
 
> ># A first quick run of bonnie++ seems to show 2.6.0-test9+libata several
> ># %s slower then 2.4.22+ft3xx, but that might be related to differences
> ># between 2.4 and 2.6.
> 
> One possibility is that queueing is not yet enabled in my sata_promise 
> driver.  Several of the SATA drivers support having multiple commands 
> outstanding per driver (tagged command queueing), but I need to do a bit 
> more work before I can enable queueing in the core.

I disabled /dev/mdX Software-RAID5 on two of the boxes that have the
hardware (got 8 of them) and did some preliminary benchmarking using
bonnie++ 1.02b. The hardware is P4-2.4GHz, 1GB RAM (highmem-enabled) wich
4 Maxtor SATA-drives with 200GBs each. The partitions I ran the tests
on are 186GB large.

2.4.22 + Promise ft3xx
silo4:/dev/sda3

Version 1.02b       ------Sequential Output------ --Sequential Input- --Random-
                    -Per Chr- --Block-- -Rewrite- -Per Chr- --Block-- --Seeks--
Machine        Size K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP  /sec %CP
silo4.rz.informa 2G 27330  95 62522  19 22619   6 29056  98 56311   6 159.7   0
                    ------Sequential Create------ --------Random Create--------
                    -Create-- --Read--- -Delete-- -Create-- --Read--- -Delete--
              files  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP
                 16  3007  98 +++++ +++ +++++ +++  3087  99 +++++ +++  9173 100
silo4,2G,27330,95,62522,19,22619,6,29056,98,56311,6,159.7,0,16,3007,98,+++++,+++,+++++,+++,3087,99,+++++,+++,9173,100

==========
2.4.22-bk48 + 2.4.22-bk48-libata1
silo5:/dev/sda3

Version 1.02b       ------Sequential Output------ --Sequential Input- --Random-
                    -Per Chr- --Block-- -Rewrite- -Per Chr- --Block-- --Seeks--
Machine        Size K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP  /sec %CP
silo5.rz.informa 2G 28068  96 61698  18 23174   5 24372  77 56009   6 175.1   0
                    ------Sequential Create------ --------Random Create--------
                    -Create-- --Read--- -Delete-- -Create-- --Read--- -Delete--
              files  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP
                 16  2986  97 +++++ +++ +++++ +++  3136  99 +++++ +++  9867  98
silo5,2G,28068,96,61698,18,23174,5,24372,77,56009,6,175.1,0,16,2986,97,+++++,+++,+++++,+++,3136,99,+++++,+++,9867,98


The performance differences are not that big that they would really
matter. One is better at one direction while the other is better at the
other direction.

I am REALLY happy that a free-as-in-freedom driver exist for the hardware
that has a much more certain future thant a
looks-like-GPL-on-the-first-look-but-one--.o-has-no-source driver. And
the libata code was really nice to read and follow, even though I knew
almost nothing about disk driver. THANK YOU!

-- 
	Oliver M. Bolzer
	oliver@gol.com

GPG (PGP) Fingerprint = 621B 52F6 2AC1 36DB 8761  018F 8786 87AD EF50 D1FF

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

* Re: Success with  Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes)
  2003-11-10 17:26     ` Oliver M. Bolzer
@ 2003-11-10 18:35       ` Jeff Garzik
  2003-11-11  6:03         ` Kevin P. Fleming
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Garzik @ 2003-11-10 18:35 UTC (permalink / raw)
  To: Oliver M. Bolzer; +Cc: linux-kernel

Oliver M. Bolzer wrote:

> I disabled /dev/mdX Software-RAID5 on two of the boxes that have the
> hardware (got 8 of them) and did some preliminary benchmarking using
> bonnie++ 1.02b. The hardware is P4-2.4GHz, 1GB RAM (highmem-enabled) wich
> 4 Maxtor SATA-drives with 200GBs each. The partitions I ran the tests
> on are 186GB large.
[...]

> The performance differences are not that big that they would really
> matter. One is better at one direction while the other is better at the
> other direction.

Well, I'll still be looking to increase performance in libata, even such ;)

But stability before performance :)


> I am REALLY happy that a free-as-in-freedom driver exist for the hardware
> that has a much more certain future thant a
> looks-like-GPL-on-the-first-look-but-one--.o-has-no-source driver. And
> the libata code was really nice to read and follow, even though I knew
> almost nothing about disk driver. THANK YOU!

Thank Promise, too.  They are actively supporting my efforts on this 
driver with hardware and docs.  Promise has also provided Arjan (author 
of "pdcraid") with documentation on their vendor-specific RAID format, 
and they are making other efforts to better support open source, and be 
more friendly with the open source community.

	Jeff




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

* Re: Success with  Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes)
  2003-11-10 18:35       ` Jeff Garzik
@ 2003-11-11  6:03         ` Kevin P. Fleming
  0 siblings, 0 replies; 8+ messages in thread
From: Kevin P. Fleming @ 2003-11-11  6:03 UTC (permalink / raw)
  To: LKML

Jeff Garzik wrote:

> Thank Promise, too.  They are actively supporting my efforts on this 
> driver with hardware and docs.  Promise has also provided Arjan (author 
> of "pdcraid") with documentation on their vendor-specific RAID format, 
> and they are making other efforts to better support open source, and be 
> more friendly with the open source community.

And it's working, I would not have purchased a SATA150 TX4 for my new 
server if libata did not have support for it. I know, it's small 
potatoes, they didn't make much money off that sale, but everything 
helps. The only other 4-port (non RAID) SATA card I have seen was from 
SIIG, but it has disappeared from their web site and distributors, and 
libata's support for the Sil3114 on it isn't ready yet anyway :-)


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

end of thread, other threads:[~2003-11-11  6:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-08 17:26 [BK PATCHES] libata fixes Jeff Garzik
2003-11-08 20:16 ` Sergey Vlasov
2003-11-08 20:23   ` Jeff Garzik
2003-11-10  9:52 ` Success with Promise FastTrak S150 TX4 (Re: [BK PATCHES] libata fixes) Oliver M. Bolzer
2003-11-10 16:26   ` Jeff Garzik
2003-11-10 17:26     ` Oliver M. Bolzer
2003-11-10 18:35       ` Jeff Garzik
2003-11-11  6:03         ` Kevin P. Fleming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).