Index: i386/conf/std.i386 =================================================================== RCS file: /cvsroot/src/sys/arch/i386/conf/std.i386,v retrieving revision 1.33 diff -p -u -r1.33 std.i386 --- i386/conf/std.i386 27 Sep 2012 18:28:55 -0000 1.33 +++ i386/conf/std.i386 7 May 2015 07:38:00 -0000 @@ -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: amd64/conf/std.amd64 =================================================================== RCS file: /cvsroot/src/sys/arch/amd64/conf/std.amd64,v retrieving revision 1.9 diff -p -u -r1.9 std.amd64 --- amd64/conf/std.amd64 27 Sep 2012 18:28:55 -0000 1.9 +++ amd64/conf/std.amd64 7 May 2015 07:38:00 -0000 @@ -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: sparc64/conf/std.sparc64 =================================================================== RCS file: /cvsroot/src/sys/arch/sparc64/conf/std.sparc64,v retrieving revision 1.18 diff -p -u -r1.18 std.sparc64 --- sparc64/conf/std.sparc64 11 Dec 2008 05:42:18 -0000 1.18 +++ sparc64/conf/std.sparc64 7 May 2015 07:38:00 -0000 @@ -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: sparc64/conf/std.sparc64-32 =================================================================== RCS file: /cvsroot/src/sys/arch/sparc64/conf/std.sparc64-32,v retrieving revision 1.3 diff -p -u -r1.3 std.sparc64-32 --- sparc64/conf/std.sparc64-32 11 Dec 2008 15:11:57 -0000 1.3 +++ sparc64/conf/std.sparc64-32 7 May 2015 07:38:00 -0000 @@ -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 Index: evbarm/conf/std.evbarm =================================================================== RCS file: /cvsroot/src/sys/arch/evbarm/conf/std.evbarm,v retrieving revision 1.3 diff -p -u -r1.3 std.evbarm --- evbarm/conf/std.evbarm 16 Dec 2012 20:43:54 -0000 1.3 +++ evbarm/conf/std.evbarm 7 May 2015 07:38:00 -0000 @@ -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: evbarm64/conf/std.evbarm64 =================================================================== RCS file: /cvsroot/src/sys/arch/evbarm64/conf/std.evbarm64,v retrieving revision 1.1 diff -p -u -r1.1 std.evbarm64 --- evbarm64/conf/std.evbarm64 10 Aug 2014 05:47:38 -0000 1.1 +++ evbarm64/conf/std.evbarm64 7 May 2015 07:38:00 -0000 @@ -2,3 +2,6 @@ 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: aarch64/conf/std.aarch64 =================================================================== RCS file: /cvsroot/src/sys/arch/aarch64/conf/std.aarch64,v retrieving revision 1.1 diff -p -u -r1.1 std.aarch64 --- aarch64/conf/std.aarch64 10 Aug 2014 05:47:37 -0000 1.1 +++ aarch64/conf/std.aarch64 7 May 2015 07:38:00 -0000 @@ -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