Module Name:    src
Committed By:   mrg
Date:           Thu May  7 19:14:56 UTC 2015

Modified Files:
        src/sys/arch/aarch64/conf: std.aarch64
        src/sys/arch/amd64/conf: std.amd64
        src/sys/arch/evbarm/conf: std.evbarm
        src/sys/arch/evbarm64/conf: std.evbarm64
        src/sys/arch/i386/conf: std.i386
        src/sys/arch/sparc64/conf: std.sparc64 std.sparc64-32

Log Message:
bump CHILD_MAX and OPEN_MAX defaults on several platforms, both to 1024.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/aarch64/conf/std.aarch64
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/amd64/conf/std.amd64
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbarm/conf/std.evbarm
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm64/conf/std.evbarm64
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/i386/conf/std.i386
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/sparc64/conf/std.sparc64
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/sparc64/conf/std.sparc64-32

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/aarch64/conf/std.aarch64
diff -u src/sys/arch/aarch64/conf/std.aarch64:1.1 src/sys/arch/aarch64/conf/std.aarch64:1.2
--- src/sys/arch/aarch64/conf/std.aarch64:1.1	Sun Aug 10 05:47:37 2014
+++ src/sys/arch/aarch64/conf/std.aarch64	Thu May  7 19:14:56 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: std.aarch64,v 1.1 2014/08/10 05:47:37 matt Exp $
+#	$NetBSD: std.aarch64,v 1.2 2015/05/07 19:14:56 mrg Exp $
 #
 # standard NetBSD/aarch64 options
 
@@ -8,3 +8,6 @@ options 	MULTIPROCESSOR
 
 options 	EXEC_ELF64
 options 	EXEC_SCRIPT
+
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few

Index: src/sys/arch/amd64/conf/std.amd64
diff -u src/sys/arch/amd64/conf/std.amd64:1.9 src/sys/arch/amd64/conf/std.amd64:1.10
--- src/sys/arch/amd64/conf/std.amd64:1.9	Thu Sep 27 18:28:55 2012
+++ src/sys/arch/amd64/conf/std.amd64	Thu May  7 19:14:55 2015
@@ -1,4 +1,4 @@
-# $NetBSD: std.amd64,v 1.9 2012/09/27 18:28:55 alnsn Exp $
+# $NetBSD: std.amd64,v 1.10 2015/05/07 19:14:55 mrg Exp $
 #
 # standard, required NetBSD/amd64 'options'
 
@@ -11,6 +11,9 @@ options 	EXEC_SCRIPT	# exec #! scripts
 options 	MTRR
 options		MULTIPROCESSOR
 
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few
+
 mainbus0 at root
 cpu* at mainbus?
 ioapic* at mainbus? apid ?

Index: src/sys/arch/evbarm/conf/std.evbarm
diff -u src/sys/arch/evbarm/conf/std.evbarm:1.3 src/sys/arch/evbarm/conf/std.evbarm:1.4
--- src/sys/arch/evbarm/conf/std.evbarm:1.3	Sun Dec 16 20:43:54 2012
+++ src/sys/arch/evbarm/conf/std.evbarm	Thu May  7 19:14:56 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: std.evbarm,v 1.3 2012/12/16 20:43:54 matt Exp $
+#	$NetBSD: std.evbarm,v 1.4 2015/05/07 19:14:56 mrg Exp $
 
 include		"conf/std"
 include		"arch/arm/conf/std.arm"	# arch standard options
@@ -6,3 +6,6 @@ include		"arch/arm/conf/std.arm"	# arch 
 options 	EXEC_ELF32
 options 	EXEC_SCRIPT
 options 	ARM32
+
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few

Index: src/sys/arch/evbarm64/conf/std.evbarm64
diff -u src/sys/arch/evbarm64/conf/std.evbarm64:1.1 src/sys/arch/evbarm64/conf/std.evbarm64:1.2
--- src/sys/arch/evbarm64/conf/std.evbarm64:1.1	Sun Aug 10 05:47:38 2014
+++ src/sys/arch/evbarm64/conf/std.evbarm64	Thu May  7 19:14:56 2015
@@ -1,4 +1,7 @@
-#	$NetBSD: std.evbarm64,v 1.1 2014/08/10 05:47:38 matt Exp $
+#	$NetBSD: std.evbarm64,v 1.2 2015/05/07 19:14:56 mrg Exp $
 
 include		"conf/std"
 include		"arch/aarch64/conf/std.aarch64"	# arch standard options
+
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few

Index: src/sys/arch/i386/conf/std.i386
diff -u src/sys/arch/i386/conf/std.i386:1.33 src/sys/arch/i386/conf/std.i386:1.34
--- src/sys/arch/i386/conf/std.i386:1.33	Thu Sep 27 18:28:55 2012
+++ src/sys/arch/i386/conf/std.i386	Thu May  7 19:14:55 2015
@@ -1,4 +1,4 @@
-# $NetBSD: std.i386,v 1.33 2012/09/27 18:28:55 alnsn Exp $
+# $NetBSD: std.i386,v 1.34 2015/05/07 19:14:55 mrg Exp $
 #
 # standard, required NetBSD/i386 'options'
 
@@ -16,6 +16,9 @@ options 	EXEC_SCRIPT	# exec #! scripts
 options		MULTIPROCESSOR		# multiprocessor support
 options 	MPBIOS			# configure CPUs and APICs using MPBIOS
 
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few
+
 mainbus0 at root
 cpu* at mainbus?
 ioapic* at mainbus?

Index: src/sys/arch/sparc64/conf/std.sparc64
diff -u src/sys/arch/sparc64/conf/std.sparc64:1.18 src/sys/arch/sparc64/conf/std.sparc64:1.19
--- src/sys/arch/sparc64/conf/std.sparc64:1.18	Thu Dec 11 05:42:18 2008
+++ src/sys/arch/sparc64/conf/std.sparc64	Thu May  7 19:14:56 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: std.sparc64,v 1.18 2008/12/11 05:42:18 alc Exp $
+#	$NetBSD: std.sparc64,v 1.19 2015/05/07 19:14:56 mrg Exp $
 
 #
 # Mandatory NetBSD/sparc64 kernel options when building either 32-bit or
@@ -16,5 +16,8 @@ options 	EXEC_ELF64	# 64-bit NetBSD and 
 
 options		CPU_IN_CKSUM	# use optimized checksum method
 
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few
+
 # Atheros HAL options
 include "external/isc/atheros_hal/conf/std.ath_hal"

Index: src/sys/arch/sparc64/conf/std.sparc64-32
diff -u src/sys/arch/sparc64/conf/std.sparc64-32:1.3 src/sys/arch/sparc64/conf/std.sparc64-32:1.4
--- src/sys/arch/sparc64/conf/std.sparc64-32:1.3	Thu Dec 11 15:11:57 2008
+++ src/sys/arch/sparc64/conf/std.sparc64-32	Thu May  7 19:14:56 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: std.sparc64-32,v 1.3 2008/12/11 15:11:57 nakayama Exp $
+#	$NetBSD: std.sparc64-32,v 1.4 2015/05/07 19:14:56 mrg Exp $
 
 #
 # Unneeded NetBSD/sparc64 kernel options when building 32-bit kernels.
@@ -10,3 +10,6 @@ no makeoptions	LP64
 makeoptions	LP64="no"
 
 no options 	EXEC_ELF64
+
+options 	CHILD_MAX=1024	# 160 is too few
+options 	OPEN_MAX=1024	# 128 is too few

Reply via email to