diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-20 22:34:01 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-20 22:34:01 +0000 |
commit | fb0581a60eb706be9ea816bd05958fa7dcdee4bd (patch) | |
tree | 2a5457d169d7907902d1045ad23a1c93a1332034 /sys/arch/m88k | |
parent | 7bfab854a934a1fd630f90fc609b2e75a1d06439 (diff) |
Crank VM_MAX_ADDRESS to 4GB minus one page now that pmap will accept it.
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/vmparam.h b/sys/arch/m88k/include/vmparam.h index b2c406679dd..41e474df714 100644 --- a/sys/arch/m88k/include/vmparam.h +++ b/sys/arch/m88k/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.6 2006/05/19 20:56:23 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.7 2006/05/20 22:34:00 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1992 Carnegie Mellon University @@ -69,7 +69,7 @@ #endif #define VM_MIN_ADDRESS ((vaddr_t)0) -#define VM_MAX_ADDRESS ((vaddr_t)0xffc00000) +#define VM_MAX_ADDRESS ((vaddr_t)0xfffff000) #define VM_MAXUSER_ADDRESS VM_MAX_ADDRESS /* |