Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Mar 2011 15:22:59 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r219909 - projects/graid/head/sys/geom/raid
Message-ID:  <201103231522.p2NFMxoH098550@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103231522.p2NFMxoH098550>