diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-26 21:35:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-26 21:35:44 +0000 |
commit | 546f71602d1b89872b474138129ca2dc206599de (patch) | |
tree | 3c5a5c29512d5dc9a673f45efc33462a91e105d5 /sys/arch/mvme68k/include | |
parent | 7fea0a8c3c3f70d2f713aff3502a60fef9de91ea (diff) |
A few changes to mvme68k:
+ switch to UVM
+ fix the system trace problem
+ big cleanup of locore.s (macro for BUG calls, use more common m68k
code whenever possible, and the macros in <m68k/asm.h>)
+ better indentation on some parts (old KNF)
+ call doshutdownhooks() at shutdown
+ use <net/netisr_dispatch.h>
+ upgrade pmap.c to something very close to our current hp300 pmap.c,
minus support for PMAP_NEW and for HP MMU
+ various tidbits I forget to mention here
work and tests by smurph@ and me.
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r-- | sys/arch/mvme68k/include/vmparam.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/include/vmparam.h b/sys/arch/mvme68k/include/vmparam.h index 27c16cd6b69..23c5e83216e 100644 --- a/sys/arch/mvme68k/include/vmparam.h +++ b/sys/arch/mvme68k/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.5 2001/05/05 20:56:44 art Exp $ */ +/* $OpenBSD: vmparam.h,v 1.6 2001/06/26 21:35:40 miod Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -173,12 +173,15 @@ #if defined(MACHINE_NEW_NONCONTIG) /* * Constants which control the way the VM system deals with memory segments. - * The hp300 only has one physical memory segment. + * The mvme68k only has one physical memory segment. */ #define VM_PHYSSEG_MAX 1 #define VM_PHYSSEG_STRAT VM_PSTRAT_BSEARCH #define VM_PHYSSEG_NOADD +#define VM_NFREELIST 1 +#define VM_FREELIST_DEFAULT 0 + /* * pmap-specific data stored in the vm_physmem[] array. */ |