From owner-cvs-src@FreeBSD.ORG Fri Jul 29 19:03:45 2005 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 4389816A41F; Fri, 29 Jul 2005 19:03:45 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02D9643D46; Fri, 29 Jul 2005 19:03:45 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j6TJ3imH086079; Fri, 29 Jul 2005 19:03:44 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j6TJ3iLw086078; Fri, 29 Jul 2005 19:03:44 GMT (envelope-from jhb) Message-Id: <200507291903.j6TJ3iLw086078@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Jul 2005 19:03:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 pmap.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: Fri, 29 Jul 2005 19:03:45 -0000 jhb 2005-07-29 19:03:44 UTC FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: Fix a bug in pmap_protect() in the PAE case where it would try to look up the vm_page_t associated with a pte using only the lower 32-bits of the pte instead of the full 64-bits. Submitted by: Greg Taleck greg at isilon dot com Reviewed by: jeffr, alc MFC after: 3 days Revision Changes Path 1.524 +2 -2 src/sys/i386/i386/pmap.c