From owner-freebsd-current@FreeBSD.ORG Fri Dec 1 23:30:36 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BEEB16A494 for ; Fri, 1 Dec 2006 23:30:36 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id C5CF643CA3 for ; Fri, 1 Dec 2006 23:30:18 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 10896 invoked by uid 399); 1 Dec 2006 23:30:34 -0000 Received: from localhost (HELO ?192.168.0.5?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 1 Dec 2006 23:30:34 -0000 Message-ID: <4570BB18.3040405@FreeBSD.org> Date: Fri, 01 Dec 2006 15:30:32 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: John Baldwin References: <4564996D.50808@FreeBSD.org> <200611301443.31419.jhb@freebsd.org> <456FA276.6050706@videotron.ca> <200612011225.02780.jhb@freebsd.org> In-Reply-To: <200612011225.02780.jhb@freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: EHCI problem on -current, and unknown devs X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Dec 2006 23:30:36 -0000 John Baldwin wrote: > Sign bug on my part. try this: > > Index: subr_rman.c > =================================================================== > RCS file: /usr/cvs/src/sys/kern/subr_rman.c,v > retrieving revision 1.53 > diff -u -r1.53 subr_rman.c > --- subr_rman.c 11 Sep 2006 19:31:52 -0000 1.53 > +++ subr_rman.c 1 Dec 2006 17:22:25 -0000 > @@ -61,6 +61,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -169,10 +170,12 @@ > mtx_lock(rm->rm_mtx); > > /* Skip entries before us. */ > - for (s = TAILQ_FIRST(&rm->rm_list); > - s && s->r_end + 1 < r->r_start; > - s = TAILQ_NEXT(s, r_link)) > - ; > + TAILQ_FOREACH(s, &rm->rm_link, r_link) { > + if (s->r_end == ULONG_MAX) > + break; > + if (s->r_end + 1 >= r->r_start) > + break; > + } > > /* If we ran off the end of the list, insert at the tail. */ > if (s == NULL) { > With up to date -current sources, this doesn't compile for me: /usr/local/libexec/ccache/world-cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/usr/local/src/sys -I/usr/local/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror /usr/local/src/sys/kern/subr_rman.c /usr/local/src/sys/kern/subr_rman.c: In function `rman_manage_region': /usr/local/src/sys/kern/subr_rman.c:173: error: structure has no member named `tqh_first' *** Error code 1 Doug -- This .signature sanitized for your protection