cvs commit: src/sys/dev/ata ata-all.c

2008-09-29 Thread Konstantin Belousov
kib 2008-09-29 19:54:38 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/ata ata-all.c Log: SVN rev 183475 on 2008-09-29 19:54:38Z by kib MFC of the r179312 by sos: Do not call ata_start() when ata_reinit fails in the ioctl path.

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-22 Thread Philip Paeps
philip 2008-08-22 08:09:13 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/ata ata-all.c ata-all.h ata-chipset.c Log: SVN rev 181995 on 2008-08-22 08:09:13Z by philip MFC r181753: Introduce a new loader tunable "hw.ata.ata_dma_ch

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Bruce Evans
On Fri, 15 Aug 2008, Bernd Walter wrote: On Fri, Aug 15, 2008 at 10:55:11AM +, Philip Paeps wrote: philip 2008-08-15 10:55:11 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c Log: SVN rev 181753 on 2008-08-15 10:55:11Z by p

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Bernd Walter writes: >I thought the cable type is read by the controller. It is read by both the controller and the device, for reasons of bugwards compatibility, read the ata-spec for gory details. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 [EMAIL P

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Bernd Walter
On Fri, Aug 15, 2008 at 01:06:21PM +0100, Philip Paeps wrote: > On 2008-08-15 13:47:04 (+0200), Bernd Walter <[EMAIL PROTECTED]> wrote: > > On Fri, Aug 15, 2008 at 10:55:11AM +, Philip Paeps wrote: > > > This can be used to disable the 80pin cable check on systems which forget > > > to set the

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Philip Paeps
On 2008-08-15 13:47:04 (+0200), Bernd Walter <[EMAIL PROTECTED]> wrote: > On Fri, Aug 15, 2008 at 10:55:11AM +, Philip Paeps wrote: > > This can be used to disable the 80pin cable check on systems which forget > > to set the bit -- such as certain laptops and Soekris boards. > > Are those bits

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Bernd Walter
On Fri, Aug 15, 2008 at 10:55:11AM +, Philip Paeps wrote: > philip 2008-08-15 10:55:11 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-chipset.c > Log: > SVN rev 181753 on 2008-08-15 10:55:11Z by philip > > Introduce a n

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2008-08-15 Thread Philip Paeps
philip 2008-08-15 10:55:11 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c Log: SVN rev 181753 on 2008-08-15 10:55:11Z by philip Introduce a new loader tunable "hw.ata.ata_dma_check_80pin", defaulting to 1. This can be use

cvs commit: src/sys/dev/ata ata-all.c ata-pci.c

2008-06-10 Thread S�ren Schmidt
sos 2008-06-11 06:44:58 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-pci.c Log: SVN rev 179717 on 2008-06-11 06:44:58Z by sos Rearrange how to call dma.alloc() so that we have resources alloc'd when need but also late enough to know how

cvs commit: src/sys/dev/ata ata-all.c

2008-05-24 Thread Bjoern A. Zeeb
bz 2008-05-24 10:15:20 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/ata ata-all.c Log: MFC: rev. 1.287 ata-all.c devclass_get_maxunit() returns n+1 with n starting at 0. So if we have channel 0..3 devclass_get_maxunit is 4

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-22 Thread Scott Long
M. Warner Losh wrote: In message: <[EMAIL PROTECTED]> John-Mark Gurney <[EMAIL PROTECTED]> writes: : Scott Long wrote this message on Mon, Apr 21, 2008 at 15:59 -0600: : > John-Mark Gurney wrote: : > >Bjoern A. Zeeb wrote this message on Sun, Apr 20, 2008 at 17:45 +: : > >>bz

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> John-Mark Gurney <[EMAIL PROTECTED]> writes: : Scott Long wrote this message on Mon, Apr 21, 2008 at 15:59 -0600: : > John-Mark Gurney wrote: : > >Bjoern A. Zeeb wrote this message on Sun, Apr 20, 2008 at 17:45 +: : > >>bz 2008-04-20 17:45:32

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Poul-Henning Kamp" <[EMAIL PROTECTED]> writes: : In message <[EMAIL PROTECTED]>, John-Mark Gurney writes: : : >Any one object to changing: : >.Nm devclass_get_maxunit : >.Nd find the maximum unit number in the class : > : >to: : >.Nm devclass_get_maxuni

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread John-Mark Gurney
Scott Long wrote this message on Mon, Apr 21, 2008 at 15:59 -0600: > John-Mark Gurney wrote: > >Bjoern A. Zeeb wrote this message on Sun, Apr 20, 2008 at 17:45 +: > >>bz 2008-04-20 17:45:32 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >>sys/dev/ata at

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread Scott Long
John-Mark Gurney wrote: Bjoern A. Zeeb wrote this message on Sun, Apr 20, 2008 at 17:45 +: bz 2008-04-20 17:45:32 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: devclass_get_maxunit() returns n+1 with n starting at 0. So if we have c

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, John-Mark Gurney writes: >Any one object to changing: >.Nm devclass_get_maxunit >.Nd find the maximum unit number in the class > >to: >.Nm devclass_get_maxunit >.Nd find the next free unit number in the class Those are very different semantics, the name should chan

Re: cvs commit: src/sys/dev/ata ata-all.c

2008-04-21 Thread John-Mark Gurney
Bjoern A. Zeeb wrote this message on Sun, Apr 20, 2008 at 17:45 +: > bz 2008-04-20 17:45:32 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c > Log: > devclass_get_maxunit() returns n+1 with n starting at 0. > So if we have channel 0..

Re: cvs commit: src/sys/dev/ata ata-all.c ata-dma.c

2008-04-21 Thread Andrey Chernov
On Sat, Apr 19, 2008 at 05:50:31AM +0400, Andrey Chernov wrote: > On Fri, Apr 18, 2008 at 03:15:04PM +, SЬren Schmidt wrote: > > Modified files: > > sys/dev/ata ata-all.c ata-dma.c > > Log: > > Fix the breakage that caused AHCI devices to vanish. Editor droppings :( > > Ev

cvs commit: src/sys/dev/ata ata-all.c

2008-04-20 Thread Bjoern A. Zeeb
bz 2008-04-20 17:45:32 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: devclass_get_maxunit() returns n+1 with n starting at 0. So if we have channel 0..3 devclass_get_maxunit is 4. It's never been a problem as devclass_get_device() has

Re: cvs commit: src/sys/dev/ata ata-all.c ata-dma.c

2008-04-18 Thread Andrey Chernov
On Fri, Apr 18, 2008 at 03:15:04PM +, SЬren Schmidt wrote: > Modified files: > sys/dev/ata ata-all.c ata-dma.c > Log: > Fix the breakage that caused AHCI devices to vanish. Editor droppings :( Even with this change ATA driver still can't mount root. ata* disks are not visi

cvs commit: src/sys/dev/ata ata-all.c ata-dma.c

2008-04-18 Thread S�ren Schmidt
sos 2008-04-18 15:15:04 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-dma.c Log: Fix the breakage that caused AHCI devices to vanish. Editor droppings :( Put the ATAPI device numbering back to the old ways. Revision ChangesPath

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-dma.c ata-lowlevel.c ata-pci.c ata-queue.c ata-raid.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c

2008-04-17 Thread Fabian Keil
Søren Schmidt <[EMAIL PROTECTED]> wrote: > sos 2008-04-17 12:29:36 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-chipset.c > ata-disk.c ata-dma.c ata-lowlevel.c > ata-pci.c at

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-dma.c ata-lowlevel.c ata-pci.c ata-queue.c ata-raid.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c

2008-04-17 Thread Niclas Zeising
Søren Schmidt wrote: sos 2008-04-17 12:29:36 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-dma.c ata-lowlevel.c ata-pci.c ata-queue.c ata-raid.c

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-dma.c ata-lowlevel.c ata-pci.c ata-queue.c ata-raid.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c

2008-04-17 Thread S�ren Schmidt
sos 2008-04-17 12:29:36 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-dma.c ata-lowlevel.c ata-pci.c ata-queue.c ata-raid.c atapi-cam.c

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h a

2008-04-11 Thread Andrey V. Elsukov
12.04.08, 03:02, "Søren Schmidt" <[EMAIL PROTECTED]>: > Well, sortof, I've floated that patch around for quite some time. > However, since it can cause havoc to systems that keep proprietary > info hidden for you behind the forged end of disk , I didn't want to > make too much fuzz about it. >

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h a

2008-04-11 Thread Søren Schmidt
Hi Well, sortof, I've floated that patch around for quite some time. However, since it can cause havoc to systems that keep proprietary info hidden for you behind the forged end of disk , I didn't want to make too much fuzz about it. But now its there and can be used if you know what you are

cvs commit: src/sys/dev/ata ata-all.c

2008-04-11 Thread S�ren Schmidt
sos 2008-04-11 22:56:27 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Fix badly placed '{' Dont leak requests on busdma failure (not that we'd get anywhere anyhow). Reported by: antoine@ Revision ChangesPath 1.284 +5 -2

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h a

2008-04-11 Thread Peter Jeremy
On Thu, Apr 10, 2008 at 01:05:05PM +, Søren Schmidt wrote: >sos 2008-04-10 13:05:05 UTC > > FreeBSD src repository > > Modified files: >sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c > ata-chipset.c ata-disk.c ata-disk.h >

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c ata-queue.c ata-raid.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c

2008-04-11 Thread S�ren Schmidt
sos 2008-04-11 11:30:28 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c ata-queue.c ata-raid.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c Log: Fix the brokenness i

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h a

2008-04-10 Thread Niclas Zeising
Jeff Roberson wrote: I have two problems with this patch. First, it seems to break my amr device which is no longer able to probe disks. Backing out this commit fixes the problem. Secondly, with WITNESS enabled my console is full of the following errors on boot: uma_zalloc_arg: zone "16"

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c at

2008-04-10 Thread Jeff Roberson
I have two problems with this patch. First, it seems to break my amr device which is no longer able to probe disks. Backing out this commit fixes the problem. Secondly, with WITNESS enabled my console is full of the following errors on boot: uma_zalloc_arg: zone "16" with the following non

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h ata-u

2008-04-10 Thread S�ren Schmidt
sos 2008-04-10 13:05:05 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c at

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h atapi-cd.c atapi-cd.h

2007-11-09 Thread Xin LI
delphij 2007-11-09 09:58:08 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h atapi-cd.c atapi-cd.h Log: MFC: Sync the -HEAD state of ata(4) back to RELENG_6, e

cvs commit: src/sys/dev/ata ata-all.c ata-chipset.c ata-pci.h

2007-10-04 Thread S�ren Schmidt
sos 2007-10-04 19:17:16 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-chipset.c ata-pci.h Log: Add support for the VIA 8237S Fix the LBA28/LBA48 crossover bug. Approved by: re@ Revision ChangesPath 1.280 +1 -1 src/sy

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-queue.c ata-raid.c ata-raid.h ata-usb.c atapi-cd.c atapi-cd.h atapi-f

2007-02-21 Thread S�ren Schmidt
sos 2007-02-21 19:07:19 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-queue.c ata-raid.c

cvs commit: src/sys/dev/ata ata-all.c

2006-12-16 Thread Olivier Houchard
cognet 2006-12-16 14:00:54 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Do not special-case __ARMEB__, we handle that in the arm code. Approved by:sos Revision ChangesPath 1.276 +0 -2 src/sys/dev/ata/ata-all.c _

cvs commit: src/sys/dev/ata ata-all.c

2006-11-17 Thread S�ren Schmidt
sos 2006-11-17 11:13:47 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Deal more generically with the byteswap needed on !littleendian HW. Account for the odd layout on ARM bigendian HW. Revision ChangesPath 1.275 +2 -2 s

cvs commit: src/sys/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.h

2006-09-30 Thread S�ren Schmidt
sos 2006-09-30 14:51:49 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.h Log: MFC: CF devices are ATA not ATAPI. Add support for the ALI/ULI M5288

Re: cvs commit: src/sys/dev/ata ata-all.c

2006-09-11 Thread Jung-uk Kim
On Monday 11 September 2006 02:33 pm, S�ren Schmidt wrote: > sos 2006-09-11 18:33:59 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c > Log: > CF devices are ATA not ATAPI. > > Revision ChangesPath > 1.274 +3 -1 src/sys/dev/at

cvs commit: src/sys/dev/ata ata-all.c

2006-09-11 Thread S�ren Schmidt
sos 2006-09-11 18:33:59 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: CF devices are ATA not ATAPI. Revision ChangesPath 1.274 +3 -1 src/sys/dev/ata/ata-all.c ___ cvs-all@freebsd

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-lowlevel.c ata-pci.h ata-queue.c ata-raid.c atapi-cd.c

2006-09-03 Thread Ruslan Ermilov
On Sat, Sep 02, 2006 at 05:01:33PM +, SЬren Schmidt wrote: > sos 2006-09-02 17:01:33 UTC > > FreeBSD src repository > > Modified files:(Branch: RELENG_6) > sys/dev/ata ata-all.c ata-all.h ata-chipset.c > ata-lowlevel.c ata-pci.h ata-q

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-lowlevel.c ata-pci.h ata-queue.c ata-raid.c atapi-cd.c

2006-09-02 Thread S�ren Schmidt
sos 2006-09-02 17:01:33 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-lowlevel.c ata-pci.h ata-queue.c ata-raid.c atapi-cd.c Log: MFC: Sync wi

Re: cvs commit: src/sys/dev/ata ata-all.c

2006-04-14 Thread Mitsuru IWASAKI
> sos 2006-04-14 16:25:42 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c > Log: > Dont poll for ATA_IDLE on a detached channel in suspend. > > Revision ChangesPath > 1.272 +2 -2 src/sys/dev/ata/ata-all.c > So soon?!

cvs commit: src/sys/dev/ata ata-all.c

2006-04-14 Thread S�ren Schmidt
sos 2006-04-14 16:25:42 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Dont poll for ATA_IDLE on a detached channel in suspend. Revision ChangesPath 1.272 +2 -2 src/sys/dev/ata/ata-all.c

cvs commit: src/sys/dev/ata ata-all.c

2006-03-10 Thread S�ren Schmidt
sos 2006-03-10 12:43:43 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c Log: MFC missed line in last commit Approved by:re@ (implicit) Revision ChangesPath 1.252.2.8 +1 -1 src/sys/dev/ata/a

cvs commit: src/sys/dev/ata ata-all.c

2006-03-10 Thread S�ren Schmidt
sos 2006-03-10 12:20:54 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: write the right unit # on verbose output. Revision ChangesPath 1.270 +2 -1 src/sys/dev/ata/ata-all.c ___ cvs

cvs commit: src/sys/dev/ata ata-all.c

2006-03-09 Thread S�ren Schmidt
sos 2006-03-09 10:24:03 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: typo. Revision ChangesPath 1.269 +1 -1 src/sys/dev/ata/ata-all.c ___ cvs-all@freebsd.org mailing list http:/

cvs commit: src/sys/dev/ata ata-all.c ata-disk.c ata-queue.c ata-raid.c

2006-03-09 Thread S�ren Schmidt
sos 2006-03-09 08:34:45 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-disk.c ata-queue.c ata-raid.c Log: Get rid of all the "long long"/"maxint" casting around in printf's. On all our platforms intmax == int64_t so s

cvs commit: src/sys/dev/ata ata-all.c ata-all.h

2006-03-08 Thread S�ren Schmidt
sos 2006-03-08 16:39:01 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h Log: ATA_USB will need to hook into the delayed boot identify to have interrupts running, so externalize it. Revision ChangesPath 1.267 +1 -1 src

cvs commit: src/sys/dev/ata ata-all.c

2006-03-05 Thread S�ren Schmidt
sos 2006-03-05 21:32:38 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Add USB modes. Revision ChangesPath 1.266 +3 -0 src/sys/dev/ata/ata-all.c ___ cvs-all@freebsd.org mailing li

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-queue.c

2006-03-01 Thread S�ren Schmidt
sos 2006-03-01 18:36:43 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-queue.c Log: MFC: Keep the parent device (in this case the channel) around in ata_request, so

cvs commit: src/sys/dev/ata ata-all.c ata-queue.c

2006-02-25 Thread S�ren Schmidt
sos 2006-02-25 17:27:33 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-queue.c Log: Fix ata_reinit so it does things in the right order to prevent panic's. Lock the channel so master/slave setups wont trash during reinit. Revision Change

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h ata-raid.c ata-raid.h

2006-02-19 Thread S�ren Schmidt
sos 2006-02-19 15:18:23 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h ata-raid.c ata-raid.h Log: MFC: Add support for the JMicron JMB363 dual

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c

2006-02-09 Thread S�ren Schmidt
sos 2006-02-09 20:54:42 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c Log: Unbreak Promise SATAII/150 controllers caused by the DMA dump changes. Revision ChangesPath 1.264 +1 -1 src/sys/dev/ata/ata-all.

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Søren Schmidt
Doug Barton wrote: Søren Schmidt wrote: Doug Barton wrote: FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c Log: Add support for

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Doug Barton
Søren Schmidt wrote: > Doug Barton wrote: >>> FreeBSD src repository >>> >>> Modified files: >>>sys/dev/ata ata-all.c ata-all.h ata-chipset.c >>> ata-disk.c ata-lowlevel.c ata-pci.c >>> ata-pci.h ata-queue.c ata-raid.c Log: >>> Add su

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Søren Schmidt
Doug Barton wrote: FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c Log: Add support for using DMA on dump, greatly speeds

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Christian Brueffer
On Wed, Jan 18, 2006 at 12:42:28PM -0800, Doug Barton wrote: > Søren Schmidt wrote: > > sos 2006-01-18 09:14:55 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/ata ata-all.c ata-all.h ata-chipset.c > > ata-disk.c ata-lowlev

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Doug Barton
Søren Schmidt wrote: > sos 2006-01-18 09:14:55 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-chipset.c > ata-disk.c ata-lowlevel.c ata-pci.c > ata-pci.h ata-queue.c ata-raid.c

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h

2006-01-18 Thread S�ren Schmidt
sos 2006-01-18 13:10:18 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h Log: Whitespace cleanup. Revision Changes

Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread Daniel O'Connor
On Wednesday 18 January 2006 19:44, SXren Schmidt wrote: > Add support for using DMA on dump, greatly speeds up the dump process. > Add dump support in ataraid. Yay! Thank you! -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing abo

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c

2006-01-18 Thread S�ren Schmidt
sos 2006-01-18 09:14:55 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c Log: Add support for using DMA on

cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata-raid.h ata_i

2006-01-05 Thread S�ren Schmidt
sos 2006-01-05 21:27:20 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-lowlevel.c at

cvs commit: src/sys/dev/ata ata-all.c ata-all.h

2005-11-25 Thread S�ren Schmidt
sos 2005-11-25 09:00:56 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h Log: When IOCATAGPARM is called, update the capabilities page that is stored in the kernel and return the new values. Revision ChangesPath 1.260 +28 -