Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/sun2/include The pmap_prefer() function grew an add...



details:   https://anonhg.NetBSD.org/src/rev/37cd76b3ab0e
branches:  trunk
changeset: 783809:37cd76b3ab0e
user:      he <he%NetBSD.org@localhost>
date:      Wed Jan 09 08:11:09 2013 +0000

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

diffstat:

 sys/arch/sun2/include/pmap.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f409451a985e -r 37cd76b3ab0e sys/arch/sun2/include/pmap.h
--- a/sys/arch/sun2/include/pmap.h      Wed Jan 09 04:52:47 2013 +0000
+++ b/sys/arch/sun2/include/pmap.h      Wed Jan 09 08:11:09 2013 +0000
@@ -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 @@
 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 */



Home | Main Index | Thread Index | Old Index