Decrease kern.geom.raid3.timeout to 4, so it is smaller than

vfs.root.mountdelay by default.
This commit is contained in:
Pawel Jakub Dawidek 2004-09-27 22:12:14 +00:00
parent 6c25233782
commit e5e7825cc3

View File

@ -54,7 +54,7 @@ u_int g_raid3_debug = 0;
TUNABLE_INT("kern.geom.raid3.debug", &g_raid3_debug);
SYSCTL_UINT(_kern_geom_raid3, OID_AUTO, debug, CTLFLAG_RW, &g_raid3_debug, 0,
"Debug level");
static u_int g_raid3_timeout = 8;
static u_int g_raid3_timeout = 4;
SYSCTL_UINT(_kern_geom_raid3, OID_AUTO, timeout, CTLFLAG_RW, &g_raid3_timeout,
0, "Time to wait on all raid3 components");
static u_int g_raid3_reqs_per_sync = 5;