From owner-cvs-src@FreeBSD.ORG Sun May 16 13:44:42 2004 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 90EAC16A4CE; Sun, 16 May 2004 13:44:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D64043D3F; Sun, 16 May 2004 13:44:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i4GKigGe008859; Sun, 16 May 2004 13:44:42 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i4GKigCb008858; Sun, 16 May 2004 13:44:42 -0700 (PDT) (envelope-from peter) Message-Id: <200405162044.i4GKigCb008858@repoman.freebsd.org> From: Peter Wemm Date: Sun, 16 May 2004 13:44:42 -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/amd64/amd64 pmap.c src/sys/amd64/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: Sun, 16 May 2004 20:44:42 -0000 peter 2004/05/16 13:44:41 PDT FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/amd64/include pmap.h Log: For consistency with i386, have pmap_kenter_temporary() take a vm_paddr_t argument. It is actually the same type on amd64 (vm_paddr_t = vm_offset_t) but this reduces the i386<->amd64 diffs a little. Revision Changes Path 1.458 +1 -1 src/sys/amd64/amd64/pmap.c 1.115 +1 -1 src/sys/amd64/include/pmap.h