From owner-cvs-src-old@FreeBSD.ORG Fri Apr 17 16:42:19 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3D7610657A8 for ; Fri, 17 Apr 2009 16:42:19 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C17D18FC1A for ; Fri, 17 Apr 2009 16:42:19 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n3HGgJYw047446 for ; Fri, 17 Apr 2009 16:42:19 GMT (envelope-from alc@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n3HGgJCK047445 for cvs-src-old@freebsd.org; Fri, 17 Apr 2009 16:42:19 GMT (envelope-from alc@repoman.freebsd.org) Message-Id: <200904171642.n3HGgJCK047445@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to alc@repoman.freebsd.org using -f From: Alan Cox Date: Fri, 17 Apr 2009 16:42:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7_2 Subject: cvs commit: src/sys/vm vm_page.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Apr 2009 16:42:20 -0000 alc 2009-04-17 16:42:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_7_2) sys/vm vm_page.c Log: SVN rev 191209 on 2009-04-17 16:42:03Z by alc MFC r175055 Defer setting either PG_CACHED or PG_FREE until after the free page queues lock is acquired. Otherwise, the state of a reservation's pages' flags and its population count can be inconsistent. That could result in a page being freed twice. (This change should have been included in the MFC of the superpages support.) Thanks to: pho for an illuminating crash Approved by: re (kib) Revision Changes Path 1.357.2.8.2.2 +2 -2 src/sys/vm/vm_page.c