From owner-cvs-src@FreeBSD.ORG Mon Jan 23 22:57:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACF2E16A424; Mon, 23 Jan 2006 22:57:14 +0000 (GMT) (envelope-from alc@cs.rice.edu) Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE63043FBC; Mon, 23 Jan 2006 22:29:05 +0000 (GMT) (envelope-from alc@cs.rice.edu) Received: from localhost (calypso.cs.rice.edu [128.42.1.127]) by cs.rice.edu (Postfix) with ESMTP id DAC4F4AABE; Mon, 23 Jan 2006 16:29:04 -0600 (CST) Received: from cs.rice.edu ([128.42.1.30]) by localhost (calypso.cs.rice.edu [128.42.1.127]) (amavisd-new, port 10024) with LMTP id 02866-01-76; Mon, 23 Jan 2006 16:29:04 -0600 (CST) Received: by cs.rice.edu (Postfix, from userid 19572) id 4BA154A9AD; Mon, 23 Jan 2006 16:29:04 -0600 (CST) Date: Mon, 23 Jan 2006 16:29:04 -0600 From: Alan Cox To: Sam Leffler Message-ID: <20060123222904.GA5033@cs.rice.edu> References: <200601230000.k0N00k0f091069@repoman.freebsd.org> <43D52E24.1050305@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43D52E24.1050305@errno.com> User-Agent: Mutt/1.4.2i X-Virus-Scanned: by amavis-2.2.1 at cs.rice.edu Cc: Alan Cox , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_bio.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: Mon, 23 Jan 2006 22:57:15 -0000 On Mon, Jan 23, 2006 at 11:27:32AM -0800, Sam Leffler wrote: > Alan Cox wrote: > >alc 2006-01-23 00:00:46 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern vfs_bio.c > > Log: > > Remove an unnecessary call to pmap_remove_all(). The given page is not > > mapped because its contents are invalid. > > This appears to be the cause of the vm_page_free_toq panics. > Yes. This change has revealed a case in which a page's contents are invalidated but the page's mappings are not immediately revoked. Tor has proposed a fix that I will review this evening. Regards, Alan