Wait a maximum of 300 seconds for network send/recv in libsa
The reason for this change is that currently, a send/recv takes many hours to time out. This is suboptimal in the bootloader because it means for example that NFS will take hours to fail before allowing subsequent access methods such as gzip to be tried. Setting MAXWAIT to 300 seconds (5 minutes) still allows slow connections of 1Mb to be used to download a 30MB kernel file. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D18544
This commit is contained in:
parent
09423f72fd
commit
d5cee48f3e
@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$");
|
|||||||
* timeout is hit.
|
* timeout is hit.
|
||||||
*/
|
*/
|
||||||
#ifndef MAXWAIT
|
#ifndef MAXWAIT
|
||||||
#define MAXWAIT 0 /* seconds */
|
#define MAXWAIT 300 /* seconds */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if MAXWAIT < 0
|
#if MAXWAIT < 0
|
||||||
|
Loading…
Reference in New Issue
Block a user