Module Name: src
Committed By: phx
Date: Wed Sep 30 20:36:28 UTC 2015
Modified Files:
src/sys/arch/amiga/include: vmparam.h
Log Message:
Reduce MAXDSIZ from 416MB back to 224MB.
Due to limitations by the current pmap implementation our virtual address
space is limited to 512MB. A MAXDSIZ of 416MB would leave only a little bit
more than 30MB for shared objects and heap allocations, so 224MB seems like
a good compromise.
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/amiga/include/vmparam.h
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/amiga/include/vmparam.h
diff -u src/sys/arch/amiga/include/vmparam.h:1.45 src/sys/arch/amiga/include/vmparam.h:1.46
--- src/sys/arch/amiga/include/vmparam.h:1.45 Fri Jun 19 14:55:51 2015
+++ src/sys/arch/amiga/include/vmparam.h Wed Sep 30 20:36:28 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.45 2015/06/19 14:55:51 mlelstv Exp $ */
+/* $NetBSD: vmparam.h,v 1.46 2015/09/30 20:36:28 phx Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -74,7 +74,7 @@
#define DFLDSIZ (64*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (416*1024*1024) /* max data size */
+#define MAXDSIZ (224*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (2*1024*1024) /* initial stack size limit */