Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/include Shrink MAXDSIZ to 512MB.



details:   https://anonhg.NetBSD.org/src/rev/1857c768d031
branches:  trunk
changeset: 321686:1857c768d031
user:      ragge <ragge%NetBSD.org@localhost>
date:      Sat Mar 31 06:34:51 2018 +0000

description:
Shrink MAXDSIZ to 512MB.
XXX this should be depending of amount of physical memory.

diffstat:

 sys/arch/vax/include/vmparam.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c018f533b1cd -r 1857c768d031 sys/arch/vax/include/vmparam.h
--- a/sys/arch/vax/include/vmparam.h    Sat Mar 31 06:32:47 2018 +0000
+++ b/sys/arch/vax/include/vmparam.h    Sat Mar 31 06:34:51 2018 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index