From owner-cvs-src@FreeBSD.ORG Mon Apr 21 18:48:44 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 0830337B401; Mon, 21 Apr 2003 18:48:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A2043FE1; Mon, 21 Apr 2003 18:48:43 -0700 (PDT) (envelope-from marcel@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 h3M1mh0U019733; Mon, 21 Apr 2003 18:48:43 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3M1mh4q019731; Mon, 21 Apr 2003 18:48:43 -0700 (PDT) Message-Id: <200304220148.h3M1mh4q019731@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 21 Apr 2003 18:48:43 -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/ia64/ia64 pmap.c src/sys/ia64/include pmap.h 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: Tue, 22 Apr 2003 01:48:44 -0000 marcel 2003/04/21 18:48:43 PDT FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c sys/ia64/include pmap.h Log: Don't use the tpa instruction to implement pmap_kextract. The tpa instruction requires that a translation is present in the TC. This may trigger a TLB miss and a subsequent call to vm_fault(). This implementation is deliberately non-inline for debugging and profiling purposes. Partial or full inlining should eventually be done. Valuable insights by: jake Revision Changes Path 1.96 +25 -0 src/sys/ia64/ia64/pmap.c 1.13 +1 -8 src/sys/ia64/include/pmap.h