summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-11-28 14:20:17 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-11-28 14:20:17 +0000
commit3c590e6dd36d1bd513749528be7e50b6b57a3420 (patch)
treec7760f639ca6d6be5cff24f95b917ce8a425059d /sys/arch/alpha
parentb3a75296ffff7c75a11696f1dc07ddf8fe8ad4ca (diff)
make pmap_virtual_space madatory in all pmaps.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/alpha/pmap.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/pmap.c b/sys/arch/alpha/alpha/pmap.c
index 366065e25ac..97e80b548e1 100644
--- a/sys/arch/alpha/alpha/pmap.c
+++ b/sys/arch/alpha/alpha/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.26 2001/11/28 14:13:06 art Exp $ */
+/* $OpenBSD: pmap.c,v 1.27 2001/11/28 14:20:16 art Exp $ */
/* $NetBSD: pmap.c,v 1.154 2000/12/07 22:18:55 thorpej Exp $ */
/*-
@@ -1036,6 +1036,13 @@ pmap_uses_prom_console(void)
}
#endif /* _PMAP_MAY_USE_PROM_CONSOLE */
+void
+pmap_virtual_space(vaddr_t *vstartp, vaddr_t *vendp)
+{
+ *vstartp = VM_MIN_KERNEL_ADDRESS;
+ *vendp = VM_MAX_KERNEL_ADDRESS;
+}
+
/*
* pmap_steal_memory: [ INTERFACE ]
*