From owner-cvs-src@FreeBSD.ORG Tue Feb 6 08:47:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08B7716A40D; Tue, 6 Feb 2007 08:47:13 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (mail.cs.rice.edu [128.42.1.31]) by mx1.freebsd.org (Postfix) with ESMTP id D4F4513C4B6; Tue, 6 Feb 2007 08:47:12 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (localhost.localdomain [127.0.0.1]) by mail.cs.rice.edu (Postfix) with ESMTP id 18A3B2C2ADC; Tue, 6 Feb 2007 02:19:07 -0600 (CST) X-Virus-Scanned: by amavis-2.4.0 at mail.cs.rice.edu Received: from mail.cs.rice.edu ([127.0.0.1]) by mail.cs.rice.edu (mail.cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id JPBs7WDb8acL; Tue, 6 Feb 2007 02:19:06 -0600 (CST) Received: from [216.63.78.18] (adsl-216-63-78-18.dsl.hstntx.swbell.net [216.63.78.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cs.rice.edu (Postfix) with ESMTP id 56D6E2C2AD7; Tue, 6 Feb 2007 02:19:06 -0600 (CST) Message-ID: <45C839F7.60908@cs.rice.edu> Date: Tue, 06 Feb 2007 02:19:03 -0600 From: Alan Cox User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20061115 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Pritchard References: <200702060551.l165ptc4064006@repoman.freebsd.org> In-Reply-To: <200702060551.l165ptc4064006@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2007 08:47:13 -0000 Mike Pritchard wrote: >mpp 2007-02-06 05:51:55 UTC > > FreeBSD src repository > > Modified files: > sys/kern subr_witness.c > Log: > The change to the vm_page_queue_freelist lock from a spin lock to a > sleep lock missed the witness code, and the system will panic > immediately on boot if WITNESS is enabled. > > Changed the witness definition to the new type. > > Revision Changes Path > 1.223 +1 -1 src/sys/kern/subr_witness.c > > Thanks. I suspect that I missed this because my kernel configuration that includes WITNESS also has WITNESS_SKIPSPIN. Alan