summaryrefslogtreecommitdiff
path: root/sys/arch/amiga/include
diff options
context:
space:
mode:
authorJanne Johansson <jj@cvs.openbsd.org>2001-08-28 09:19:04 +0000
committerJanne Johansson <jj@cvs.openbsd.org>2001-08-28 09:19:04 +0000
commit6b61600fc0ccf34584043c8c561d188a9d6bc5cd (patch)
treede61d0da5ea690087a8ed099f047e40d9d2f853e /sys/arch/amiga/include
parentfd56ac101fa6b4f72feba5462755946c88e60fe8 (diff)
Dont hardcode NKMEMCLUSTERS, calculate it to 256, as other m68ks do.
Diffstat (limited to 'sys/arch/amiga/include')
-rw-r--r--sys/arch/amiga/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amiga/include/param.h b/sys/arch/amiga/include/param.h
index 77d17946355..d730fa63232 100644
--- a/sys/arch/amiga/include/param.h
+++ b/sys/arch/amiga/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.15 2001/06/14 07:45:28 jj Exp $ */
+/* $OpenBSD: param.h,v 1.16 2001/08/28 09:19:03 jj Exp $ */
/* $NetBSD: param.h,v 1.35 1997/07/10 08:22:36 veego Exp $ */
/*
@@ -77,7 +77,7 @@
* Size of kernel malloc arena in logical pages
*/
#ifndef NKMEMCLUSTERS
-#define NKMEMCLUSTERS (3072 * 1024 / PAGE_SIZE)
+#define NKMEMCLUSTERS (2048 * 1024 / PAGE_SIZE)
#endif
#define MSGBUFSIZE 8192