Date: Sun, 24 May 2009 11:37:10 +0000 (UTC) From: Doug Rabson <dfr@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r192679 - head/lib/libstand Message-ID: <200905241137.n4OBbAxI088557@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905241137.n4OBbAxI088557>