Proper fix for old config setting maxusers to 8.

This commit is contained in:
Peter Wemm 2001-12-14 09:39:29 +00:00
parent 13c8bbf31f
commit f6916f666c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87860
7 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
.if !defined(S)
.if exists(./@/.)

View File

@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
STD8X16FONT?= iso

View File

@ -30,7 +30,7 @@ MACHINE_ARCH= ia64
FMT= # Needs to be blank for linux cross tools.
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
STD8X16FONT?= iso

View File

@ -19,7 +19,7 @@
#
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
.if !defined(S)
.if exists(./@/.)

View File

@ -17,7 +17,7 @@
#
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
# Temporary stuff while we're still embryonic
NO_MODULES?= yes

View File

@ -36,7 +36,7 @@ CWARNFLAGS= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
FMT=
# Which version of config(8) is required.
%VERSREQ= 500008
%VERSREQ= 500009
STD8X16FONT?= iso

View File

@ -133,7 +133,7 @@ init_param2(int physpages)
{
/* Base parameters */
if ((maxusers = MAXUSERS) == 0 || maxusers == 8) {
if ((maxusers = MAXUSERS) == 0) {
maxusers = physpages / (1024 * 1024 / PAGE_SIZE);
if (maxusers < 32)
maxusers = 32;