]> Zhao Yanbai Git Server - minix.git/commitdiff
kernel: more stack for vm 41/341/1
authorBen Gras <ben@minix3.org>
Tue, 19 Feb 2013 12:52:52 +0000 (13:52 +0100)
committerBen Gras <ben@minix3.org>
Tue, 19 Feb 2013 12:53:56 +0000 (13:53 +0100)
kernel/arch/earm/protect.c
kernel/arch/i386/protect.c

index fd8b41617bd800ef21d879b87777942489acebff..fe6df33d97635036238664f971e37da8c663788e 100644 (file)
@@ -128,7 +128,7 @@ void arch_boot_proc(struct boot_image *ip, struct proc *rp)
 
                /* exec parameters */
                execi.stack_high = kinfo.user_sp;
-               execi.stack_size = 32 * 1024;   /* not too crazy as it must be preallocated */
+               execi.stack_size = 64 * 1024;   /* not too crazy as it must be preallocated */
                execi.proc_e = ip->endpoint;
                execi.hdr = (char *) mod->mod_start; /* phys mem direct */
                execi.filesize = execi.hdr_len = mod->mod_end - mod->mod_start;
index fe9d23f3fbe68562780f6d84584f1eaba23152b7..22acc3350faed09608a5b1d0241d04b0171d9060 100644 (file)
@@ -404,7 +404,7 @@ void arch_boot_proc(struct boot_image *ip, struct proc *rp)
 
                /* exec parameters */
                execi.stack_high = kinfo.user_sp;
-               execi.stack_size = 16 * 1024;   /* not too crazy as it must be preallocated */
+               execi.stack_size = 64 * 1024;   /* not too crazy as it must be preallocated */
                execi.proc_e = ip->endpoint;
                execi.hdr = (char *) mod->mod_start; /* phys mem direct */
                execi.filesize = execi.hdr_len = mod->mod_end - mod->mod_start;