summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-12-07 21:49:16 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-12-07 21:49:16 +0000
commitd044b80890761d3dcff21c85f8ff0a7532d1208e (patch)
tree268b0931fd40a1b509213b3c56fb60f72e1c74a9 /sys/arch
parent0dbb2a440349931bf1f205e2c4c58a2079f9cd52 (diff)
NKMEMPAGES defines.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme68k/include/param.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/include/param.h b/sys/arch/mvme68k/include/param.h
index 10d0ba91afb..55c75df112e 100644
--- a/sys/arch/mvme68k/include/param.h
+++ b/sys/arch/mvme68k/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.14 2001/12/05 16:28:13 art Exp $ */
+/* $OpenBSD: param.h,v 1.15 2001/12/07 21:49:15 art Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -65,6 +65,13 @@
#include <m68k/param.h>
/*
+ * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
+ * logical pages.
+ */
+#define NKMEMPAGES_MIN_DEFAULT ((2 * 1024 * 1024) >> PAGE_SHIFT)
+#define NKMEMPAGES_MAX_DEFAULT ((2 * 1024 * 1024) >> PAGE_SHIFT)
+
+/*
* spl functions; all but spl0 are done in-line
*/
#include <machine/psl.h>