From: Andy P. <at...@us...> - 2001-09-11 19:29:38
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm In directory usw-pr-cvs1:/tmp/cvs-serv24475/mm Modified Files: pgtable.h task.h Log Message: Last set of tweaks to task.h hopefully. Index: pgtable.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm/pgtable.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- pgtable.h 2001/07/31 17:33:26 1.14 +++ pgtable.h 2001/09/11 19:29:35 1.15 @@ -158,7 +158,6 @@ #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page)) #define page_address(page) ((page)->virtual) -/* FIXME: check this */ /* Encode and de-code a swap entry */ #define SWP_TYPE(x) (((x).val >> 1) & 0x3f) #define SWP_OFFSET(x) ((x).val >> 8) Index: task.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm/task.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- task.h 2001/09/06 23:42:09 1.5 +++ task.h 2001/09/11 19:29:35 1.6 @@ -17,12 +17,12 @@ * you really want to allocate that much to a process, change PGD_SPECIAL below */ /* TASK_TXTMAX is the maximum program size */ -#define TASK_TXTMAX (16*1024*1024) +#define TASK_TXTMAX (6*1024*1024) /* TASK_MMAPMAX is the max space in P0 for the mmap() function , contiguous with TASK_TXTMAX - Its basically the amount of memory you give a process to play with */ -#define TASK_MMAPMAX (48*1024*1024) +#define TASK_MMAPMAX (58*1024*1024) /* TASK_STKMAX is the max space for the stack in P1 */ /* Like WSMAX above, the upper limit for this is set by PGD_SPECIAL below. If this @@ -36,7 +36,7 @@ * Think of this like balsetcnt on VMS. * -- this should also set/be set by the linux max task variable */ -#define TASK_MAXUPRC (32) +#define TASK_MAXUPRC (64) /* * This decides where the kernel will search for a free chunk of vm |