Module Name:    src
Committed By:   he
Date:           Wed Jan  9 08:11:09 UTC 2013

Modified Files:
        src/sys/arch/sun2/include: pmap.h

Log Message:
The pmap_prefer() function grew an additional argument with the introduction
of top-down VM; fix the prototype accordingly.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/sun2/include/pmap.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/sun2/include/pmap.h
diff -u src/sys/arch/sun2/include/pmap.h:1.25 src/sys/arch/sun2/include/pmap.h:1.26
--- src/sys/arch/sun2/include/pmap.h:1.25	Mon Jan  7 16:58:08 2013
+++ src/sys/arch/sun2/include/pmap.h	Wed Jan  9 08:11:09 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.h,v 1.25 2013/01/07 16:58:08 chs Exp $	*/
+/*	$NetBSD: pmap.h,v 1.26 2013/01/09 08:11:09 he Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@ struct pmap {
 int _pmap_fault(struct vm_map *, vaddr_t, vm_prot_t);
 
 /* This lets us have some say in choosing VA locations. */
-extern void pmap_prefer(vaddr_t, vaddr_t *);
+extern void pmap_prefer(vaddr_t, vaddr_t *, int);
 #define PMAP_PREFER(fo, ap, sz, td) pmap_prefer((fo), (ap), (td))
 
 /* This needs to be a macro for kern_sysctl.c */

Reply via email to