Fix allocation for exech_map to be 16*PAGE_SIZE rather than 32*PAGE_SIZE
so that it is scaled the same as exec_map (16 concurrent exec'ers).
This commit is contained in:
parent
0c4194fafb
commit
a7e4f840ca
@ -35,7 +35,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
|
||||
* $Id: machdep.c,v 1.217 1996/12/05 04:28:42 dyson Exp $
|
||||
* $Id: machdep.c,v 1.218 1996/12/11 05:52:15 dyson Exp $
|
||||
*/
|
||||
|
||||
#include "npx.h"
|
||||
@ -336,7 +336,7 @@ cpu_startup(dummy)
|
||||
exec_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(16*ARG_MAX), TRUE);
|
||||
exech_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(32*PAGE_SIZE), TRUE);
|
||||
(16*PAGE_SIZE), TRUE);
|
||||
u_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(maxproc*UPAGES*PAGE_SIZE), FALSE);
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
|
||||
* $Id: machdep.c,v 1.217 1996/12/05 04:28:42 dyson Exp $
|
||||
* $Id: machdep.c,v 1.218 1996/12/11 05:52:15 dyson Exp $
|
||||
*/
|
||||
|
||||
#include "npx.h"
|
||||
@ -336,7 +336,7 @@ cpu_startup(dummy)
|
||||
exec_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(16*ARG_MAX), TRUE);
|
||||
exech_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(32*PAGE_SIZE), TRUE);
|
||||
(16*PAGE_SIZE), TRUE);
|
||||
u_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
(maxproc*UPAGES*PAGE_SIZE), FALSE);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user