From owner-cvs-src@FreeBSD.ORG Wed Aug 6 12:18:09 2003 Return-Path: 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 747A337B401; Wed, 6 Aug 2003 12:18:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F77E43FBD; Wed, 6 Aug 2003 12:18:09 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h76JI80U070449; Wed, 6 Aug 2003 12:18:08 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h76JI8EU070448; Wed, 6 Aug 2003 12:18:08 -0700 (PDT) Message-Id: <200308061918.h76JI8EU070448@repoman.freebsd.org> From: Alan Cox Date: Wed, 6 Aug 2003 12:18:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Wed, 06 Aug 2003 19:18:09 -0000 alc 2003/08/06 12:18:08 PDT FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: Correct a mistake in the previous revision: Reduce the scope of the page queues lock such that it isn't held around the call to get_pv_entry(), which calls uma_zalloc(). At the point of the call to get_pv_entry(), the lock isn't necessary and holding it could lead to recursive acquisition, which isn't allowed. Revision Changes Path 1.423 +1 -1 src/sys/i386/i386/pmap.c