summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-06-24 21:24:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-06-24 21:24:04 +0000
commiteb30d8959a1448ff7a7b73c410533fd80508f0af (patch)
treecfc8de5d0358f7748bb5089529c342104180deba /sys/arch/alpha/include
parent3adb826ceb6fc3ab73eae18d801296aaefa6c8aa (diff)
On user/kernel shared page table machines, do not let processes map their
own page 0, as discussed with miod (and many others previously, including art and toby). On sparc, make this __LDPGSZ because PAGE_SIZE is non-constant ok miod tedu
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r--sys/arch/alpha/include/vmparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/vmparam.h b/sys/arch/alpha/include/vmparam.h
index ffe2b94cfd7..8febfdf5fdb 100644
--- a/sys/arch/alpha/include/vmparam.h
+++ b/sys/arch/alpha/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.14 2005/04/11 15:12:59 deraadt Exp $ */
+/* $OpenBSD: vmparam.h,v 1.15 2008/06/24 21:24:01 deraadt Exp $ */
/* $NetBSD: vmparam.h,v 1.18 2000/05/22 17:13:54 thorpej Exp $ */
/*
@@ -102,7 +102,7 @@
*/
/* user/kernel map constants */
-#define VM_MIN_ADDRESS ((vaddr_t)ALPHA_USEG_BASE) /* 0 */
+#define VM_MIN_ADDRESS ((vaddr_t)PAGE_SIZE)
#define VM_MAXUSER_ADDRESS ((vaddr_t)(ALPHA_USEG_END + 1L)) /* 4T */
#define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS
#define VM_MIN_KERNEL_ADDRESS ((vaddr_t)ALPHA_K1SEG_BASE)