diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-02-15 21:34:34 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-02-15 21:34:34 +0000 |
commit | e2b2dd619edd58f49d6ce8b43c1da41d66e9a7eb (patch) | |
tree | 69faf09b84dc583d6dd2a6afb7c4d7caf470743f /sys/arch/amd64/include/pmap.h | |
parent | 43cbd5fb7af372c4817d128b7914b3ab3e010117 (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/amd64/include/pmap.h')
-rw-r--r-- | sys/arch/amd64/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/pmap.h b/sys/arch/amd64/include/pmap.h index 45a37aadbe0..3d056db5bfa 100644 --- a/sys/arch/amd64/include/pmap.h +++ b/sys/arch/amd64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.52 2015/02/07 01:46:27 kettenis Exp $ */ +/* $OpenBSD: pmap.h,v 1.53 2015/02/15 21:34:33 miod Exp $ */ /* $NetBSD: pmap.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $ */ /* @@ -375,7 +375,7 @@ extern long nkptp[], nbpd[], nkptpmax[]; #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) /* |