summaryrefslogtreecommitdiff
path: root/sys/arch/i386/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2015-02-15 21:34:34 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2015-02-15 21:34:34 +0000
commite2b2dd619edd58f49d6ce8b43c1da41d66e9a7eb (patch)
tree69faf09b84dc583d6dd2a6afb7c4d7caf470743f /sys/arch/i386/include
parent43cbd5fb7af372c4817d128b7914b3ab3e010117 (diff)
Change pmap_remove_holes() to take a vmspace instead of a map as its argument.
Use this on vax to correctly pick the end of the stack area now that the stackgap adjustment code will no longer guarantee it is a fixed location.
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r--sys/arch/i386/include/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/pmap.h b/sys/arch/i386/include/pmap.h
index d8dd8733296..5f0422529e9 100644
--- a/sys/arch/i386/include/pmap.h
+++ b/sys/arch/i386/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.70 2015/01/09 03:43:52 mlarkin Exp $ */
+/* $OpenBSD: pmap.h,v 1.71 2015/02/15 21:34:33 miod Exp $ */
/* $NetBSD: pmap.h,v 1.44 2000/04/24 17:18:18 thorpej Exp $ */
/*
@@ -350,7 +350,7 @@ extern int pmap_pg_g; /* do we support PG_G? */
#define pmap_proc_iflush(p,va,len) /* nothing */
#define pmap_unuse_final(p) /* nothing */
-#define pmap_remove_holes(map) do { /* nothing */ } while (0)
+#define pmap_remove_holes(vm) do { /* nothing */ } while (0)
/*