From owner-svn-src-head@freebsd.org Sun Nov 5 04:51:02 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DE93E61E77; Sun, 5 Nov 2017 04:51:02 +0000 (UTC) (envelope-from peter@wemm.org) Received: from smtp2.wemm.org (smtp2.wemm.org [192.203.228.78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp2.wemm.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 38D676D1EC; Sun, 5 Nov 2017 04:51:01 +0000 (UTC) (envelope-from peter@wemm.org) Received: from overcee.wemm.org (canning.wemm.org [192.203.228.65]) by smtp2.wemm.org (Postfix) with ESMTP id 5E5E959D; Sat, 4 Nov 2017 21:50:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wemm.org; s=m20140428; t=1509857455; bh=yCK80MY4CQcDUdCCZaWvJUmMxSiBTuvRbm3y1+Yk6oY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=sT5uUcph+kxRjHd/SNocczpGwCN7ogl2CxTq+iQlvlArwOaW+myTC4D932nglDHu5 xV7WeAG2mH56H+cOECdQbWQABwb1sl6vdaz+2IPj63rVE6fEG+NVm0tAyUGzd7H2F8 4q9t/veLJYPqxTYSgR/1Qw9uIGu/R4YE7xaBbL1U= From: Peter Wemm To: svn-src-all@freebsd.org Cc: Warner Losh , src-committers@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r325378 - head/sys/dev/ipmi Date: Sat, 04 Nov 2017 21:50:50 -0700 Message-ID: <2932858.xKWtPkGhRe@overcee.wemm.org> User-Agent: KMail/4.14.10 (FreeBSD/12.0-CURRENT; KDE/4.14.30; amd64; ; ) In-Reply-To: <201711040301.vA431wdY002757@repo.freebsd.org> References: <201711040301.vA431wdY002757@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2203108.fd0kqvgrHI"; micalg="pgp-sha256"; protocol="application/pgp-signature" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Nov 2017 04:51:02 -0000 --nextPart2203108.fd0kqvgrHI Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="us-ascii" On Saturday, November 04, 2017 03:01:58 AM Warner Losh wrote: > Author: imp > Date: Sat Nov 4 03:01:58 2017 > New Revision: 325378 > URL: https://svnweb.freebsd.org/changeset/base/325378 >=20 > Log: > Make the startup timeout 0 seconds by default rathern than 420s. T= his > makes the default fail safe when watchdogd is disabled (which is al= so > the default). We're still getting unanticipated reboots. I think what is happening is: 1) orderly reboot initiated. 2) By default, the watchdog code sets a 420 second timer, even with no=20= watchdogd. 3) reboot complets, system comes up.=20 4) A few minutes later, the pre-reboot 420 second timer expires and *an= other*=20 reboot happens. Setting hw.ipmi.on=3D"0" in loader.conf stops this... eg: reboot at 4:41:47.. system comes back up, and later: ... Uptime: 322 Sun Nov 5 04:48:45 UTC 2017 Uptime: 323 Sun Nov 5 04:48:46 UTC 2017 Uptime: 324 Sun Nov 5 04:48:47 UTC 2017 Stopping cron. Waiting for PIDS: 1004. Stopping sshd. Waiting for PIDS: 994. Stopping nginx. ... That's exactly 420 seconds after the original reboot which matches the=20= wd_shutdown_countdown timer that is still enabled. =2D-=20 Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com; KI= 6FJV UTF-8: for when a ' or ... just won\342\200\231t do\342\200\246 --nextPart2203108.fd0kqvgrHI Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part. Content-Transfer-Encoding: 7Bit -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEBgrA0Vr/vfNVuPoUNdaXCeyAngQFAln+mKoACgkQNdaXCeyA ngQkAgf/TOCHmKHGF13lLFdf0NbYbkpRgi3cTxfN/eJlp8CTL7xDTn7PWBApskoT x39rdhFCIhkgkkyu7sm9YMD9EC6771cxvAbT3moBiruHzhZ140Q+dZpH2nsBGGcK UisDBBAeelstU3VGpXA/dhEpslITmWbretmrokH6GVT/SI+UyH4VYvKp7KMw4I1d TowIHxmS0Uix9Pm/92j2vZ7gqP+VhF2SemwBxylF8KQOjy8lf5DgZekSLQJ+BF2J Yf+jLPcSa+DiJjO/yDEe7YnXwZf1+Y9BeiMWUZEVrZnH70HmZrs1EJ10ClKqOwOv cOjFQtmUE6gKwHSo404wvwdXl51dhw== =SGir -----END PGP SIGNATURE----- --nextPart2203108.fd0kqvgrHI--