From owner-freebsd-stable@FreeBSD.ORG Thu Aug 2 23:01:57 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA88F106564A; Thu, 2 Aug 2012 23:01:57 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout2-b.corp.bf1.yahoo.com (mrout2-b.corp.bf1.yahoo.com [98.139.253.105]) by mx1.freebsd.org (Postfix) with ESMTP id 5FA738FC08; Thu, 2 Aug 2012 23:01:57 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout2-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q72N1SxM062010; Thu, 2 Aug 2012 16:01:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1343948489; bh=8Ntez5R0dpc7vzI48gyxJEvmSoXJnixiGEz33+r9iGk=; h=Subject:From:To:Cc:In-Reply-To:References:Content-Type:Date: Message-ID:Mime-Version:Content-Transfer-Encoding; b=uXnF678FzKG8ff+B9ekm4TafvAnKgp9MAkZfsx4UBiI3qN5Qy1zE2aQmLjcQwKNXC sTSyha+izVu4QWHrdksbsCoss6itvglNrHWSvV7Gm7d0qzccbAyvOELKVKabGEeSgk wFeafwvCL6Xs7KjXh/XrUp2zF/ATjt4i3G+yISi4= From: Sean Bruno To: John Baldwin In-Reply-To: <201208021634.20529.jhb@freebsd.org> References: <1342742294.2656.24.camel@powernoodle.corp.yahoo.com> <201208010853.11447.jhb@freebsd.org> <1343861328.5229.6.camel@powernoodle.corp.yahoo.com> <201208021634.20529.jhb@freebsd.org> Content-Type: text/plain; charset="UTF-8" Date: Thu, 02 Aug 2012 16:01:28 -0700 Message-ID: <1343948488.2838.0.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 948488002 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 23:01:57 -0000 On Thu, 2012-08-02 at 13:34 -0700, John Baldwin wrote: > 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. > > Do you have watchdogd enabled at all? > No, we never had it enabled. Sean