svn commit: r255054 - stable/9/sys/kern

Marcel Moolenaar marcel at FreeBSD.org
Fri Aug 30 05:36:30 UTC 2013


Author: marcel
Date: Fri Aug 30 05:36:29 2013
New Revision: 255054
URL: http://svnweb.freebsd.org/changeset/base/255054

Log:
  MFC r253910: Add a tunable for the default timeout.
  
  Requested by: rodrigc@, delphij@

Modified:
  stable/9/sys/kern/vfs_mountroot.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/kern/vfs_mountroot.c
==============================================================================
--- stable/9/sys/kern/vfs_mountroot.c	Fri Aug 30 03:48:16 2013	(r255053)
+++ stable/9/sys/kern/vfs_mountroot.c	Fri Aug 30 05:36:29 2013	(r255054)
@@ -119,6 +119,7 @@ static int root_mount_complete;
 
 /* By default wait up to 3 seconds for devices to appear. */
 static int root_mount_timeout = 3;
+TUNABLE_INT("vfs.mountroot.timeout", &root_mount_timeout);
 
 struct root_hold_token *
 root_mount_hold(const char *identifier)


More information about the svn-src-all mailing list