Date: Sat, 4 Nov 2017 03:01:58 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r325378 - head/sys/dev/ipmi Message-ID: <201711040301.vA431wdY002757@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Sat Nov 4 03:01:58 2017 New Revision: 325378 URL: https://svnweb.freebsd.org/changeset/base/325378 Log: Make the startup timeout 0 seconds by default rathern than 420s. This makes the default fail safe when watchdogd is disabled (which is also the default). Sponsored by Modified: head/sys/dev/ipmi/ipmi.c Modified: head/sys/dev/ipmi/ipmi.c ============================================================================== --- head/sys/dev/ipmi/ipmi.c Sat Nov 4 03:01:52 2017 (r325377) +++ head/sys/dev/ipmi/ipmi.c Sat Nov 4 03:01:58 2017 (r325378) @@ -84,7 +84,7 @@ static int on = 1; static bool wd_in_shutdown = false; static int wd_timer_actions = IPMI_SET_WD_ACTION_POWER_CYCLE; static int wd_shutdown_countdown = 420; /* sec */ -static int wd_startup_countdown = 420; /* sec */ +static int wd_startup_countdown = 0; /* sec */ static int wd_pretimeout_countdown = 120; /* sec */ static int cycle_wait = 10; /* sec */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711040301.vA431wdY002757>