From owner-cvs-src Fri Mar 21 9: 5:34 2003 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 6610337B404; Fri, 21 Mar 2003 09:05:32 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C879D43FDD; Fri, 21 Mar 2003 09:05:29 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id EAA15754; Sat, 22 Mar 2003 04:05:26 +1100 Date: Sat, 22 Mar 2003 04:05:23 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov Cc: "David E. O'Brien" , "" , "" , "" Subject: Re: cvs commit: src/release/alpha dokern.sh In-Reply-To: <20030321155018.GC17108@sunbay.com> Message-ID: <20030322035859.B3226@gamplex.bde.org> References: <200303182317.h2INHP3T065549@repoman.freebsd.org> <20030321155018.GC17108@sunbay.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Ruslan Ermilov wrote: > On Tue, Mar 18, 2003 at 03:17:25PM -0800, David E. O'Brien wrote: > > obrien 2003/03/18 15:17:25 PST > > > > FreeBSD src repository > > > > Modified files: (Branch: RELENG_4) > > release/alpha dokern.sh > > Log: > > MFC: rev 1.59 (partial, only the maxusers downgrade) > > > > Revision Changes Path > > 1.56.2.3 +1 -1 src/release/alpha/dokern.sh > > > I'm planning on dropping `maxusers' from here (in HEAD), > now this is auto-tuned, once I hear back from Wilko if > resetting it to zero fixes the `panic: timeout table full' > he observes when in the middle of installing the i386 > generated snapshot for Alpha. Please remove bitrot associated with maxusers too: - GENERIC declares maxusers to be 0, but this has no effect since ... - ... maxusers is statically allocated to 0 in config/config.y, and the warning about it not being set in the config file is commented out in config/mkoptions.c: % if (maxusers == 0) { % /* printf("maxusers not specified; will auto-size\n"); */ % } else if (maxusers < users.u_min) { % printf("minimum of %d maxusers assumed\n", users.u_min); % maxusers = users.u_min; % } else if (maxusers > users.u_max) % printf("warning: maxusers > %d (%d)\n", users.u_max, maxusers); Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message