diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-13 00:13:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-13 00:13:06 +0000 |
commit | 92d706c9e92818edf3e8a53d7f248d3ff3030889 (patch) | |
tree | 8f81f5e1415e1be461018170d026930f21708c7e | |
parent | 8bedaea35048f0c2e71c23200ad85e0513687113 (diff) |
SYSPTSIZE is orhpaned, so g/c the poor define.
-rw-r--r-- | sys/arch/amiga/include/vmparam.h | 4 | ||||
-rw-r--r-- | sys/arch/hp300/include/vmparam.h | 6 | ||||
-rw-r--r-- | sys/arch/mac68k/include/vmparam.h | 6 | ||||
-rw-r--r-- | sys/arch/mvme68k/include/vmparam.h | 6 |
4 files changed, 7 insertions, 15 deletions
diff --git a/sys/arch/amiga/include/vmparam.h b/sys/arch/amiga/include/vmparam.h index cc48b2dc76f..a42f59019c2 100644 --- a/sys/arch/amiga/include/vmparam.h +++ b/sys/arch/amiga/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.13 2001/08/12 20:06:03 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.14 2001/08/13 00:12:38 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.16 1997/07/12 16:18:36 perry Exp $ */ /* @@ -98,8 +98,6 @@ /* * Sizes of the system and user portions of the system page table. */ -/* SYSPTSIZE IS SILLY; IT SHOULD BE COMPUTED AT BOOT TIME */ -#define SYSPTSIZE (2 * NPTEPG) /* 16mb */ #define USRPTSIZE (1 * NPTEPG) /* 16mb */ /* diff --git a/sys/arch/hp300/include/vmparam.h b/sys/arch/hp300/include/vmparam.h index 0f4ccca00a3..6259e5a22c1 100644 --- a/sys/arch/hp300/include/vmparam.h +++ b/sys/arch/hp300/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.7 2001/08/12 20:06:08 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.8 2001/08/13 00:13:05 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.16 1998/08/20 08:33:48 kleink Exp $ */ /* @@ -99,8 +99,6 @@ /* * Sizes of the system and user portions of the system page table. */ -/* SYSPTSIZE IS SILLY; IT SHOULD BE COMPUTED AT BOOT TIME */ -#define SYSPTSIZE (2 * NPTEPG) /* 8mb */ #define USRPTSIZE (1 * NPTEPG) /* 4mb */ /* @@ -165,7 +163,7 @@ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) /* # of kernel PT pages (initial only, can grow dynamically) */ -#define VM_KERNEL_PT_PAGES ((vsize_t)2) /* XXX: SYSPTSIZE */ +#define VM_KERNEL_PT_PAGES ((vsize_t)2) /* pcb base */ #define pcbb(p) ((u_int)(p)->p_addr) diff --git a/sys/arch/mac68k/include/vmparam.h b/sys/arch/mac68k/include/vmparam.h index 3269c9b67da..eabf55ca453 100644 --- a/sys/arch/mac68k/include/vmparam.h +++ b/sys/arch/mac68k/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.8 2001/08/12 20:06:11 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.9 2001/08/13 00:13:05 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.8 1996/11/15 14:21:00 briggs Exp $ */ /* @@ -130,8 +130,6 @@ /* * Sizes of the system and user portions of the system page table. */ -/* SYSPTSIZE IS SILLY; IT SHOULD BE COMPUTED AT BOOT TIME */ -#define SYSPTSIZE (2 * NPTEPG) /* 8mb */ #define USRPTSIZE (1 * NPTEPG) /* 4mb */ /* @@ -186,7 +184,7 @@ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) /* # of kernel PT pages (initial only, can grow dynamically) */ -#define VM_KERNEL_PT_PAGES ((vsize_t)2) /* XXX: SYSPTSIZE */ +#define VM_KERNEL_PT_PAGES ((vsize_t)2) /* * Constants which control the way the VM system deals with memory segments. diff --git a/sys/arch/mvme68k/include/vmparam.h b/sys/arch/mvme68k/include/vmparam.h index 72b2dd1516a..06b672dd8cc 100644 --- a/sys/arch/mvme68k/include/vmparam.h +++ b/sys/arch/mvme68k/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.8 2001/08/12 20:06:11 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.9 2001/08/13 00:13:05 miod Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -97,8 +97,6 @@ /* * Sizes of the system and user portions of the system page table. */ -/* SYSPTSIZE IS SILLY; IT SHOULD BE COMPUTED AT BOOT TIME */ -#define SYSPTSIZE (2 * NPTEPG) /* 8mb */ #define USRPTSIZE (1 * NPTEPG) /* 4mb */ /* @@ -160,7 +158,7 @@ #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) /* # of kernel PT pages (initial only, can grow dynamically) */ -#define VM_KERNEL_PT_PAGES ((vm_size_t)2) /* XXX: SYSPTSIZE */ +#define VM_KERNEL_PT_PAGES ((vm_size_t)2) /* pcb base */ #define pcbb(p) ((u_int)(p)->p_addr) |