From 216f2b3fe33d137b88c8923ae63a501cc26e6d0b Mon Sep 17 00:00:00 2001 From: dfr Date: Sun, 24 May 2009 11:37:10 +0000 Subject: [PATCH] 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. --- lib/libstand/stand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index 91bfd931ff2e..eae160530ab5 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -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 */