diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-12 15:52:29 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-12 15:52:29 +0000 |
commit | c7f47a80824c48eee2a07b2e3be8c4ca722435df (patch) | |
tree | 32a83acee685e40c008917f9bb56ab3de411f3c6 /sys | |
parent | 3670ecaef334d6a86ec59ded969e6d8b933536fb (diff) |
mask wrong code in uvm out, also bump VM_MAX_KERNEL_ADDRESS up to the io space
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/include/vmparam.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h index 149ba7f879d..15d094db2a4 100644 --- a/sys/arch/hppa/include/vmparam.h +++ b/sys/arch/hppa/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.6 1999/04/20 19:29:13 mickey Exp $ */ +/* $OpenBSD: vmparam.h,v 1.7 1999/05/12 15:52:28 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -44,8 +44,6 @@ #define HIGHPAGES UPAGES #define SYSCALLGATE 0xC0000000 /* syscall gateway page */ -#define INTSTACK_SIZE (5 * NBPG) /* interrupt stack size */ - /* * Virtual memory related constants, all in bytes */ @@ -124,7 +122,7 @@ #define VM_MAXUSER_ADDRESS ((vaddr_t)0xc0000000) #define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS #define VM_MIN_KERNEL_ADDRESS ((vaddr_t)0) -#define VM_MAX_KERNEL_ADDRESS ((vaddr_t)0xc0000000) +#define VM_MAX_KERNEL_ADDRESS ((vaddr_t)0xf0000000) /* virtual sizes (bytes) for various kernel submaps */ #define VM_MBUF_SIZE (NMBCLUSTERS*MCLBYTES) @@ -134,6 +132,8 @@ #define VM_PHYSSEG_MAX 8 /* this many physmem segments */ #define VM_PHYSSEG_STRAT VM_PSTRAT_BIGFIRST +#define VM_PHYSSEG_NOADD /* XXX until uvm code is fixed */ + #define VM_NFREELIST 2 #define VM_FREELIST_DEFAULT 0 #define VM_FREELIST_FIRST16 1 |