From owner-cvs-src@FreeBSD.ORG Sun Aug 7 01:48:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 CF5AE16A421; Sun, 7 Aug 2005 01:48:22 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB9343F39; Sun, 7 Aug 2005 01:18:59 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.3/8.13.3/NinthNine) with SMTP id j771IvBE098721; Sun, 7 Aug 2005 10:18:58 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 7 Aug 2005 10:18:57 +0900 (JST) Message-Id: <200508070118.j771IvBE098721@sakura.ninth-nine.com> From: Norikatsu Shigemura To: David Xu In-Reply-To: <42F54578.40609@freebsd.org> References: <200508061031.j76AVR6P072556@repoman.freebsd.org> <20050806160155.GA3944@xor.obsecurity.org> <42F4E3AF.8000001@samsco.org> <20050806170813.GA36888@xor.obsecurity.org> <42F54578.40609@freebsd.org> X-Mailer: Sylpheed version 2.0.0 (GTK+ 2.6.9; i386-portbld-freebsd7.0) 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 (sakura.ninth-nine.com [219.127.74.121]); Sun, 07 Aug 2005 10:18:58 +0900 (JST) Cc: cvs-src@FreeBSD.org, scottl@samsco.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, kris@obsecurity.org Subject: Re: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 07 Aug 2005 01:48:23 -0000 On Sun, 07 Aug 2005 07:19:20 +0800 David Xu wrote: > but as you are saying the panics on SMP, I have fixed it, as least I can > not reproduce it on my dual PIII machine. > In my test, ULE always outperforms 4BSD, your test may vary though. > Interactive performance is good, but not as good as 4BSD, it has to be > improved, that's why I want to turn it on as a default. I confirmed on my dual PIII machine. That's cool and stable! But I'm having a hang-up over make(1)'s crash on /usr/src/secure/lib/libcrypto with make -j1024 buildworld. In #1321, JobExec function, /usr/src/usr.bin/make/job.c if (lastNode != job->node && (job->flags & JOB_FIRST) && !(job->flags & JOB_SILENT)) { ==> (crash) MESSAGE(stdout, job->node); lastNode = job->node; } I don't understand why crash on crash point. I know only that following static const char pointer is go away. So fprintf(stdout, targFmt, job->node) got sig11. static const char *targFmt;