From owner-cvs-all@FreeBSD.ORG Wed Feb 1 18:12:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 9DA6C16A420; Wed, 1 Feb 2006 18:12:36 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0229343D4C; Wed, 1 Feb 2006 18:12:35 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id k11I9iCe056314; Wed, 1 Feb 2006 11:09:44 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 01 Feb 2006 11:09:44 -0700 (MST) Message-Id: <20060201.110944.41688240.imp@bsdimp.com> To: sgk@troutmask.apl.washington.edu From: Warner Losh In-Reply-To: <20060201175804.GA74170@troutmask.apl.washington.edu> References: <20060201173757.GB67971@troutmask.apl.washington.edu> <20060201174034.GA29331@xor.obsecurity.org> <20060201175804.GA74170@troutmask.apl.washington.edu> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 01 Feb 2006 11:09:44 -0700 (MST) Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, stefanf@FreeBSD.org, ru@FreeBSD.org, kris@obsecurity.org, stefan@fafoe.narf.at Subject: Re: cvs commit: src/sys/sys cdefs.h src/include nl_types.h stdio.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 01 Feb 2006 18:12:36 -0000 From: Steve Kargl Subject: Re: cvs commit: src/sys/sys cdefs.h src/include nl_types.h stdio.h Date: Wed, 1 Feb 2006 09:58:04 -0800 > On Wed, Feb 01, 2006 at 12:40:34PM -0500, Kris Kennaway wrote: > > On Wed, Feb 01, 2006 at 09:37:58AM -0800, Steve Kargl wrote: > > > On Wed, Feb 01, 2006 at 12:35:27PM -0500, Kris Kennaway wrote: > > > > > > > > Didn't we go through this the other week? 'make buildworld' is the > > > > only safe way to build your world. If you try some shortcut method, > > > > and it fails, then don't complain until you've done 'buildworld' and > > > > it's also failed in the same way. > > > > > > The error message I quoted was from a buildworld! > > > > OK, this was unclear to me. > > > > It's a catch-22. The panics on amd64 appear to be from a > 2006-01-26 src tree. Stefan happened to change stdio.h on > that day. If one panicks his system 10 to 15 times trying > to isolate the problem, one runs the risk of damaging a > filesystem. In this case, the panic appears to be related > to devfs or file descriptor code. Well, "make buildworld" > in parallel with a "gmake check-gfortran" in a GCC tree > writing to /usr can trigger the panic in 5 to 10 minutes, > but this scrambles /usr. So, yes, my /usr/include and src/ > are probably out-of-sync, but it is what it is. This is definitely a cross-threading situation. However, I'll see what I can do to mitigate the effects. I have a more general fix for the building current on 5.4, but that won't apply here. If you really need to get a good set of includes, then you'll have to cvsup from 2006-01-25 and rebuild from those sources. I'm actually surprised that make includes doesn't install the sys directory as well, which would pick up the new sys/cdefs.h. Does 'make -f Makefile.inc _includes' also exhibit the same problem? Warner