Date: Sat, 23 May 2009 18:44:26 +0000 (UTC) From: Alan Cox <alc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r192659 - head/sys/mips/mips Message-ID: <200905231844.n4NIiQ5M063774@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905231844.n4NIiQ5M063774>