Module Name: src
Committed By: ragge
Date: Sat Mar 31 06:34:51 UTC 2018
Modified Files:
src/sys/arch/vax/include: vmparam.h
Log Message:
Shrink MAXDSIZ to 512MB.
XXX this should be depending of amount of physical memory.
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/vax/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/vax/include/vmparam.h
diff -u src/sys/arch/vax/include/vmparam.h:1.50 src/sys/arch/vax/include/vmparam.h:1.51
--- src/sys/arch/vax/include/vmparam.h:1.50 Sun Jan 26 03:18:39 2014
+++ src/sys/arch/vax/include/vmparam.h Sat Mar 31 06:34:51 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.50 2014/01/26 03:18:39 christos Exp $ */
+/* $NetBSD: vmparam.h,v 1.51 2018/03/31 06:34:51 ragge Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -68,7 +68,7 @@
#define DFLDSIZ (128*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (1024*1024*1024) /* max data size */
+#define MAXDSIZ (512*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (512*1024) /* initial stack size limit */