svn commit: r192679 - head/lib/libstand

Doug Rabson dfr at FreeBSD.org
Sun May 24 11:37:11 UTC 2009


Author: dfr
Date: Sun May 24 11:37:10 2009
New Revision: 192679
URL: http://svn.freebsd.org/changeset/base/192679

Log:
  Increase the number of available file descriptors to 64. This fixes the
  reported zfsboot problems for systems where more than seven drives are part
  of ZFS pools.

Modified:
  head/lib/libstand/stand.h

Modified: head/lib/libstand/stand.h
==============================================================================
--- head/lib/libstand/stand.h	Sun May 24 11:10:27 2009	(r192678)
+++ head/lib/libstand/stand.h	Sun May 24 11:37:10 2009	(r192679)
@@ -167,7 +167,7 @@ struct open_file {
 #define SOPEN_RASIZE	512
 };
 
-#define	SOPEN_MAX	8
+#define	SOPEN_MAX	64
 extern struct open_file files[];
 
 /* f_flags values */


More information about the svn-src-head mailing list