Date: Fri, 4 Jan 2002 20:27:32 +0000 From: Ben Smithurst <ben@FreeBSD.org> To: Chris Tracy <freebsd-stable-for-chris@db.lm.com> Cc: stable@freebsd.org Subject: Re: GENERIC kernel configuration file Message-ID: <20020104202732.J67639@strontium.shef.vinosystems.com> In-Reply-To: <20020104151508.B93280-100000@zaxxon.telerama.com> References: <20020104151508.B93280-100000@zaxxon.telerama.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--X1xGqyAVbSpAWs5A Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Chris Tracy wrote: > Today I installed the latest stable snapshot (4.4-20020103-STABLE) and > when I was configuring my kernel from the GENERIC configuration file, > I noticed that 'maxusers' was set to '0'. >=20 > Is this simply a typo, or does it mean something else? It makes the kernel pick a reasonable default value based on the amount of main memory. From sys/kern/subr_param.c: if ((maxusers =3D MAXUSERS) =3D=3D 0) { maxusers =3D physpages / (1024 * 1024 / PAGE_SIZE); if (maxusers < 32) maxusers =3D 32; if (maxusers > 512) maxusers =3D 512; } This sets maxusers to the number of megabytes of main memory in the machine, if the kernel config specifies it as zero, but limits it to the range 32..512. --=20 Ben Smithurst / ben@FreeBSD.org FreeBSD: The Power To Serve http://www.FreeBSD.org/ --X1xGqyAVbSpAWs5A Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8NhAzbPzJ+yzvRCwRAndvAJ9G2kBnqk0j1VrXI+bD/om++juvjACdFsgw A/6Hb4BPZfa84AZanW07j/M= =DrTr -----END PGP SIGNATURE----- --X1xGqyAVbSpAWs5A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020104202732.J67639>