Module Name: src
Committed By: martin
Date: Sun Nov 22 11:42:55 UTC 2015
Modified Files:
src/sys/arch/sparc64/include: vmparam.h
Log Message:
Reduce the "MAXDSIZ" limit for bottom-up-VA (i.e. old binaries) processes
to the old limit of 1 GB. Some old binaries can not deal with more.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/sparc64/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/sparc64/include/vmparam.h
diff -u src/sys/arch/sparc64/include/vmparam.h:1.35 src/sys/arch/sparc64/include/vmparam.h:1.36
--- src/sys/arch/sparc64/include/vmparam.h:1.35 Sun Nov 15 20:35:33 2015
+++ src/sys/arch/sparc64/include/vmparam.h Sun Nov 22 11:42:55 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.35 2015/11/15 20:35:33 martin Exp $ */
+/* $NetBSD: vmparam.h,v 1.36 2015/11/22 11:42:55 martin Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -102,7 +102,7 @@
* model.
*/
#define VM_DEFAULT_ADDRESS_BOTTOMUP(da, sz) \
- round_page((vaddr_t)(da) + (vsize_t)max(maxdmap,2UL*1024*1024*1024))
+ round_page((vaddr_t)(da) + (vsize_t)max(maxdmap,1UL*1024*1024*1024))
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (2*1024*1024) /* initial stack size limit */