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

Alan Cox alc at FreeBSD.org
Sat May 23 18:44:27 UTC 2009


Author: alc
Date: Sat May 23 18:44:26 2009
New Revision: 192659
URL: http://svn.freebsd.org/changeset/base/192659

Log:
  Give pmap_enter()'s third parameter the same name that it has on amd64 and
  i386.  Otherwise, my next to last commit (r192628) to this file doesn't
  actually compile.

Modified:
  head/sys/mips/mips/pmap.c

Modified: head/sys/mips/mips/pmap.c
==============================================================================
--- head/sys/mips/mips/pmap.c	Sat May 23 18:33:22 2009	(r192658)
+++ head/sys/mips/mips/pmap.c	Sat May 23 18:44:26 2009	(r192659)
@@ -1729,8 +1729,8 @@ retry:
  *	insert this page into the given map NOW.
  */
 void
-pmap_enter(pmap_t pmap, vm_offset_t va, vm_prot_t fault_type, vm_page_t m, vm_prot_t prot,
-    boolean_t wired)
+pmap_enter(pmap_t pmap, vm_offset_t va, vm_prot_t access, vm_page_t m,
+    vm_prot_t prot, boolean_t wired)
 {
 	vm_offset_t pa, opa;
 	register pt_entry_t *pte;


More information about the svn-src-head mailing list