From owner-freebsd-stable@FreeBSD.ORG Thu Aug 2 17:50:29 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B1BC1065680; Thu, 2 Aug 2012 17:50:29 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 4DDF98FC16; Thu, 2 Aug 2012 17:50:29 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id A22ECB97B; Thu, 2 Aug 2012 13:50:28 -0400 (EDT) From: John Baldwin To: Sean Bruno Date: Thu, 2 Aug 2012 09:51:19 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p17; KDE/4.5.5; amd64; ; ) References: <1342742294.2656.24.camel@powernoodle.corp.yahoo.com> <201208010853.11447.jhb@freebsd.org> <1343861328.5229.6.camel@powernoodle.corp.yahoo.com> In-Reply-To: <1343861328.5229.6.camel@powernoodle.corp.yahoo.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201208020951.19565.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Thu, 02 Aug 2012 13:50:28 -0400 (EDT) Cc: "attilio@freebsd.org" , "freebsd-stable@freebsd.org" Subject: Re: [stable 9] panic on reboot: ipmi_wd_event() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2012 17:50:29 -0000 On Wednesday, August 01, 2012 6:48:48 pm Sean Bruno wrote: > On Wed, 2012-08-01 at 05:53 -0700, John Baldwin wrote: > > Index: vfs_subr.c > > =================================================================== > > --- vfs_subr.c (revision 238969) > > +++ vfs_subr.c (working copy) > > @@ -1868,8 +1868,11 @@ sched_sync(void) > > continue; > > } > > > > - if (first_printf == 0) > > + if (first_printf == 0) { > > + mtx_unlock(&sync_mtx); > > wdog_kern_pat(WD_LASTVAL); > > + mtx_lock(&sync_mtx); > > + } > > > > } > > if (!LIST_EMPTY(gslp)) { > > > > > > -- > > John Baldwin > > This definitely makes the panic go away on reboot. Attilio, does this change seem ok to you? -- John Baldwin