diff options
author | 2003-04-04 00:41:34 +0000 | |
---|---|---|
committer | 2003-04-04 00:41:34 +0000 | |
commit | d23a8989da8c5523c016b8e6ff2ea50dfe8a80ca (patch) | |
tree | f5964c02717c333796a8fd0b90452976134330ee | |
parent | always flush on pre-ops. data flushed may involve (diff) | |
download | wireguard-openbsd-d23a8989da8c5523c016b8e6ff2ea50dfe8a80ca.tar.xz wireguard-openbsd-d23a8989da8c5523c016b8e6ff2ea50dfe8a80ca.zip |
lower the max kernel vm address since there might be proms right below the io
-rw-r--r-- | sys/arch/hppa/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h index 57ac4d92eb1..3bdd468a28d 100644 --- a/sys/arch/hppa/include/vmparam.h +++ b/sys/arch/hppa/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.25 2003/03/30 00:19:14 mickey Exp $ */ +/* $OpenBSD: vmparam.h,v 1.26 2003/04/04 00:41:34 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -89,7 +89,7 @@ #define VM_MAXUSER_ADDRESS ((vaddr_t)0xc0000000) #define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS #define VM_MIN_KERNEL_ADDRESS ((vaddr_t)0xc0001000) -#define VM_MAX_KERNEL_ADDRESS ((vaddr_t)0xf0000000) +#define VM_MAX_KERNEL_ADDRESS ((vaddr_t)0xef000000) /* virtual sizes (bytes) for various kernel submaps */ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) |