From owner-svn-src-all@FreeBSD.ORG Thu Mar 22 15:14:10 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE327106566B; Thu, 22 Mar 2012 15:14:10 +0000 (UTC) (envelope-from jchandra@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D97F78FC1F; Thu, 22 Mar 2012 15:14:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q2MFEAFt029552; Thu, 22 Mar 2012 15:14:10 GMT (envelope-from jchandra@svn.freebsd.org) Received: (from jchandra@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q2MFEAG3029550; Thu, 22 Mar 2012 15:14:10 GMT (envelope-from jchandra@svn.freebsd.org) Message-Id: <201203221514.q2MFEAG3029550@svn.freebsd.org> From: "Jayachandran C." Date: Thu, 22 Mar 2012 15:14:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r233308 - head/sys/mips/mips X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Mar 2012 15:14:11 -0000 Author: jchandra Date: Thu Mar 22 15:14:10 2012 New Revision: 233308 URL: http://svn.freebsd.org/changeset/base/233308 Log: Fix return type of mips pmap_kextract() The return type should be vm_paddr_t, not vm_offset_t. Modified: head/sys/mips/mips/pmap.c Modified: head/sys/mips/mips/pmap.c ============================================================================== --- head/sys/mips/mips/pmap.c Thu Mar 22 14:20:51 2012 (r233307) +++ head/sys/mips/mips/pmap.c Thu Mar 22 15:14:10 2012 (r233308) @@ -3209,7 +3209,7 @@ pmap_emulate_modified(pmap_t pmap, vm_of * Extract the physical page address associated * virtual address. */ - /* PMAP_INLINE */ vm_offset_t +vm_paddr_t pmap_kextract(vm_offset_t va) { int mapped;