Subject: Re: kernel limits (??)
To: None <chuck@ccrc.wustl.edu>
From: Jonathan Stone <jonathan@DSG.Stanford.EDU>
List: tech-kern
Date: 10/14/1998 15:30:47
I wrote:
> #ifndef MAX_KMAPENT
> #define MAX_KMAPENT (50 + 2 * MAXPROC)
> #endif
Oops, should be NPROC, not MAXPROC. Plus we'd need to move the
default definition of NPROC in param.c as
#ifndef NPROC
#define NPROC (20 + 16 * MAXUSERS)
#endif
to param.h (inside #ifdef _KERNEL) so both param.c and the
VM code can access NPROC.
That seems like The Right Thing till we make the static table go away
completely. Comments? Yell now if you see a problem.
PS: Perry, was there a reason that the options manpage didnt/doesn't
cover the overridable "options" computed in param.c -- NPROC, NTEXT,
NVNODE, plus MAXUSERS?