Source-Changes-HG archive

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

[src/netbsd-7]: src/sys/arch/amiga/include Pull up following revision(s) (req...



details:   https://anonhg.NetBSD.org/src/rev/057df30b5fe5
branches:  netbsd-7
changeset: 799657:057df30b5fe5
user:      riz <riz%NetBSD.org@localhost>
date:      Fri Nov 06 20:23:56 2015 +0000

description:
Pull up following revision(s) (requested by phx in ticket #989):
        sys/arch/amiga/include/vmparam.h: revision 1.46
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.

diffstat:

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

diffs (18 lines):

diff -r d8370a31945d -r 057df30b5fe5 sys/arch/amiga/include/vmparam.h
--- a/sys/arch/amiga/include/vmparam.h  Fri Nov 06 09:23:48 2015 +0000
+++ b/sys/arch/amiga/include/vmparam.h  Fri Nov 06 20:23:56 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.42.30.2 2015/11/06 00:49:14 riz Exp $    */
+/*     $NetBSD: vmparam.h,v 1.42.30.3 2015/11/06 20:23:56 riz Exp $    */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -76,7 +76,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 */



Home | Main Index | Thread Index | Old Index