From owner-cvs-src@FreeBSD.ORG Wed May 4 20:53:54 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D078016A4CE; Wed, 4 May 2005 20:53:54 +0000 (GMT) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id A344A43D4C; Wed, 4 May 2005 20:53:53 +0000 (GMT) (envelope-from jroberson@chesapeake.net) Received: from mail.chesapeake.net (localhost [127.0.0.1]) by mail.chesapeake.net (8.12.10/8.12.10) with ESMTP id j44KrO1h005141; Wed, 4 May 2005 16:53:24 -0400 (EDT) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost)j44KrNMM005132; Wed, 4 May 2005 16:53:24 -0400 (EDT) (envelope-from jroberson@chesapeake.net) X-Authentication-Warning: mail.chesapeake.net: jroberson owned process doing -bs Date: Wed, 4 May 2005 16:53:22 -0400 (EDT) From: Jeff Roberson To: =?X-UNKNOWN?Q?S=F8ren_Schmidt?= In-Reply-To: <200504301622.j3UGM7v0070615@repoman.freebsd.org> Message-ID: <20050504162434.T18611@mail.chesapeake.net> References: <200504301622.j3UGM7v0070615@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: 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-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c ata-raid.c ata X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2005 20:53:55 -0000 On Sat, 30 Apr 2005, S=F8ren Schmidt wrote: > sos 2005-04-30 16:22:07 UTC > Some ata change in the last week or two has left my laptop unable to boot if I don't remove the cdrom drive. I get semaphore timeout errors. Let me know what sort of information I can supply to resolve this. > 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-dma.c > ata-isa.c ata-lowlevel.c ata-pci.c > ata-pci.h ata-queue.c ata-raid.c > ata-raid.h ata_if.m atapi-cam.c > atapi-cd.c atapi-fd.c atapi-tape.c > Log: > Take newbusification one step further, ie use the device_t more consequ= ently > all way through the code down the layers, instead of the mix'n'match th= at > resulted from the conversion done earlier. > > Sponsored by: pair.com > > Revision Changes Path > 1.248 +16 -12 src/sys/dev/ata/ata-all.c > 1.100 +70 -70 src/sys/dev/ata/ata-all.h > 1.35 +2 -2 src/sys/dev/ata/ata-card.c > 1.22 +2 -2 src/sys/dev/ata/ata-cbus.c > 1.114 +302 -267 src/sys/dev/ata/ata-chipset.c > 1.187 +6 -7 src/sys/dev/ata/ata-disk.c > 1.135 +24 -22 src/sys/dev/ata/ata-dma.c > 1.29 +2 -2 src/sys/dev/ata/ata-isa.c > 1.64 +31 -25 src/sys/dev/ata/ata-lowlevel.c > 1.101 +24 -19 src/sys/dev/ata/ata-pci.c > 1.45 +8 -8 src/sys/dev/ata/ata-pci.h > 1.47 +10 -7 src/sys/dev/ata/ata-queue.c > 1.92 +1 -1 src/sys/dev/ata/ata-raid.c > 1.32 +26 -26 src/sys/dev/ata/ata-raid.h > 1.5 +1 -1 src/sys/dev/ata/ata_if.m > 1.41 +28 -28 src/sys/dev/ata/atapi-cam.c > 1.177 +27 -46 src/sys/dev/ata/atapi-cd.c > 1.101 +5 -7 src/sys/dev/ata/atapi-fd.c > 1.98 +14 -29 src/sys/dev/ata/atapi-tape.c >