cvs commit: src/sys/i386/conf GENERIC

Norikatsu Shigemura nork at FreeBSD.org
Sun Aug 7 01:48:23 GMT 2005


On Sun, 07 Aug 2005 07:19:20 +0800
David Xu <davidxu at freebsd.org> 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;


More information about the cvs-src mailing list