From owner-cvs-all@FreeBSD.ORG Thu Mar 25 14:10:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C0B916A506; Thu, 25 Mar 2004 14:10:23 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 324F343D2D; Thu, 25 Mar 2004 14:10:23 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i2PMAIkj033819; Thu, 25 Mar 2004 15:10:19 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Thu, 25 Mar 2004 15:10:18 -0700 (MST) Message-Id: <20040325.151018.82302651.imp@bsdimp.com> To: des@des.no From: "M. Warner Losh" In-Reply-To: References: <200403251831.i2PIVrkl097680@repoman.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: wpaul@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/ndis kern_ndis.c subr_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Mar 2004 22:10:23 -0000 In message: des@des.no (Dag-Erling Sm=F8rgrav) writes: : Bill Paul writes: : > Since we can't traverse the resource SLIST backwards, we have t= o : > make a temporary copy of the list in the right order and then b= uild : > the Windows resource list from that. I suppose we could just fi= x : > the PCI bus code to use a TAILQ instead, but then I'd have to t= rack : > down all the consumers of the BUS_GET_RESOURCE_LIST() and fix t= hem : > too. : = : There are practically none: : = : des@dwp ~% gf BUS_GET_RESOURCE_LIST : qsrc/sys/compat/ndis/kern_ndis.c: brl =3D BUS_GET_RESOURCE_LIST= (device_get_parent(dev), dev); : src/sys/dev/if_ndis/if_ndis_pci.c: rl =3D BUS_GET_RESOURCE_LIST(= device_get_parent(dev), dev); : src/sys/kern/subr_bus.c: rl =3D BUS_GET_RESOURCE_LIST(dev, chi= ld); : src/sys/kern/subr_bus.c: rl =3D BUS_GET_RESOURCE_LIST(dev, chi= ld); : src/sys/kern/subr_bus.c: rl =3D BUS_GET_RESOURCE_LIST(dev, chi= ld); : src/sys/kern/subr_bus.c: rl =3D BUS_GET_RESOURCE_LIST(dev, chi= ld); : src/sys/kern/subr_bus.c: rl =3D BUS_GET_RESOURCE_LIST(dev, chi= ld); Acutally, there are alot of downstream users of rl. Warner