svn commit: r219909 - projects/graid/head/sys/geom/raid
Alexander Motin
mav at FreeBSD.org
Wed Mar 23 15:23:00 UTC 2011
Author: mav
Date: Wed Mar 23 15:22:59 2011
New Revision: 219909
URL: http://svn.freebsd.org/changeset/base/219909
Log:
Increase start timeout from 15 to 30 seconds. Depending on metadata type,
results of false timeout could be much more dangerous then 15 seconds delay.
Modified:
projects/graid/head/sys/geom/raid/g_raid.c
Modified: projects/graid/head/sys/geom/raid/g_raid.c
==============================================================================
--- projects/graid/head/sys/geom/raid/g_raid.c Wed Mar 23 15:05:48 2011 (r219908)
+++ projects/graid/head/sys/geom/raid/g_raid.c Wed Mar 23 15:22:59 2011 (r219909)
@@ -64,7 +64,7 @@ TUNABLE_INT("kern.geom.raid.read_err_thr
SYSCTL_UINT(_kern_geom_raid, OID_AUTO, read_err_thresh, CTLFLAG_RW,
&g_raid_read_err_thresh, 0,
"Number of read errors equated to disk failure");
-u_int g_raid_start_timeout = 15;
+u_int g_raid_start_timeout = 30;
TUNABLE_INT("kern.geom.raid.start_timeout", &g_raid_start_timeout);
SYSCTL_UINT(_kern_geom_raid, OID_AUTO, start_timeout, CTLFLAG_RW,
&g_raid_start_timeout, 0,
More information about the svn-src-projects
mailing list