Module Name: src
Committed By: reinoud
Date: Sat Feb 4 23:04:15 UTC 2012
Modified Files:
src/sys/arch/usermode/include: genheaders.sh
Log Message:
Bump UPAGES effectively bumping per-process (system) stack i.e. the stack on
which traps are taken. When it was 8 it could run out of space on big NFS
stack traces in combination with timer and memory paging.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/usermode/include/genheaders.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/usermode/include/genheaders.sh
diff -u src/sys/arch/usermode/include/genheaders.sh:1.6 src/sys/arch/usermode/include/genheaders.sh:1.7
--- src/sys/arch/usermode/include/genheaders.sh:1.6 Thu Feb 2 11:10:24 2012
+++ src/sys/arch/usermode/include/genheaders.sh Sat Feb 4 23:04:15 2012
@@ -57,7 +57,7 @@ EOF
echo "#undef __HAVE_PROCFS_MACHDEP" >> ${hdr}
elif [ "$hdr" = "param.h" ]; then
echo "#undef UPAGES" >> ${hdr}
- echo "#define UPAGES 8" >> ${hdr}
+ echo "#define UPAGES 12" >> ${hdr}
echo "#undef USPACE" >> ${hdr}
echo "#define USPACE (PAGE_SIZE*UPAGES)" >> ${hdr}
fi