svn commit: r233308 - head/sys/mips/mips

Jayachandran C. jchandra at FreeBSD.org
Thu Mar 22 15:14:11 UTC 2012


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;


More information about the svn-src-all mailing list