File tree Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -731,6 +731,24 @@ void free_pack_by_name(const char *pack_name)
731
731
}
732
732
}
733
733
734
+ static unsigned int get_max_fd_limit (void )
735
+ {
736
+ #ifdef RLIMIT_NOFILE
737
+ struct rlimit lim ;
738
+
739
+ if (getrlimit (RLIMIT_NOFILE , & lim ))
740
+ die_errno ("cannot get RLIMIT_NOFILE" );
741
+
742
+ return lim .rlim_cur ;
743
+ #elif defined(_SC_OPEN_MAX )
744
+ return sysconf (_SC_OPEN_MAX );
745
+ #elif defined(OPEN_MAX )
746
+ return OPEN_MAX ;
747
+ #else
748
+ return 1 ; /* see the caller ;-) */
749
+ #endif
750
+ }
751
+
734
752
/*
735
753
* Do not call this directly as this leaks p->pack_fd on error return;
736
754
* call open_packed_git() instead.
@@ -747,13 +765,7 @@ static int open_packed_git_1(struct packed_git *p)
747
765
return error ("packfile %s index unavailable" , p -> pack_name );
748
766
749
767
if (!pack_max_fds ) {
750
- struct rlimit lim ;
751
- unsigned int max_fds ;
752
-
753
- if (getrlimit (RLIMIT_NOFILE , & lim ))
754
- die_errno ("cannot get RLIMIT_NOFILE" );
755
-
756
- max_fds = lim .rlim_cur ;
768
+ unsigned int max_fds = get_max_fd_limit ();
757
769
758
770
/* Save 3 for stdin/stdout/stderr, 22 for work */
759
771
if (25 < max_fds )
You can’t perform that action at this time.
0 commit comments