Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/gen Bump the glob limits to 512KB for total string ...



details:   https://anonhg.NetBSD.org/src/rev/6e5e0c95dbf9
branches:  trunk
changeset: 347594:6e5e0c95dbf9
user:      joerg <joerg%NetBSD.org@localhost>
date:      Sun Sep 04 18:27:08 2016 +0000

description:
Bump the glob limits to 512KB for total string size and 64K path
entries. The old limits were too small for some important FTP use cases
like a pkgsrc repository.

diffstat:

 lib/libc/gen/glob.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (30 lines):

diff -r 4ba331f0dc5d -r 6e5e0c95dbf9 lib/libc/gen/glob.c
--- a/lib/libc/gen/glob.c       Sun Sep 04 15:25:11 2016 +0000
+++ b/lib/libc/gen/glob.c       Sun Sep 04 18:27:08 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: glob.c,v 1.35 2013/03/20 23:44:47 lukem Exp $  */
+/*     $NetBSD: glob.c,v 1.36 2016/09/04 18:27:08 joerg Exp $  */
 
 /*
  * Copyright (c) 1989, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)glob.c     8.3 (Berkeley) 10/13/93";
 #else
-__RCSID("$NetBSD: glob.c,v 1.35 2013/03/20 23:44:47 lukem Exp $");
+__RCSID("$NetBSD: glob.c,v 1.36 2016/09/04 18:27:08 joerg Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -87,9 +87,9 @@
 #define NO_GETPW_R
 #endif
 
-#define        GLOB_LIMIT_STRING       65536   /* number of readdirs */
+#define        GLOB_LIMIT_STRING       524288  /* number of readdirs */
 #define        GLOB_LIMIT_STAT         128     /* number of stat system calls */
-#define        GLOB_LIMIT_READDIR      16384   /* total buffer size of path strings */
+#define        GLOB_LIMIT_READDIR      65536   /* total buffer size of path strings */
 #define        GLOB_LIMIT_PATH         1024    /* number of path elements */
 #define GLOB_LIMIT_BRACE       128     /* Number of brace calls */
 



Home | Main Index | Thread Index | Old Index