diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2001-12-05 01:57:16 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2001-12-05 01:57:16 +0000 |
commit | 7d4e405c93372a538ea996770c4b2713f9f060af (patch) | |
tree | 6cd29f566d8ce4e0b98c833eb388e60be4873329 /sys/arch/mvme88k | |
parent | 0a184a866038ed50ac9395e288f697c8ad216309 (diff) |
make nkmempages dynamic based on memory. okay art@ from netbsd:
date: 2000/02/11 19:22:52; author: thorpej;
Add some very simple code to auto-size the kmem_map. We take the
amount of physical memory, divide it by 4, and then allow machine
dependent code to place upper and lower bounds on the size. Export
the computed value to userspace via the new "vm.nkmempages" sysctl.
NKMEMCLUSTERS is now deprecated and will generate an error if you
attempt to use it. The new option, should you choose to use it,
is called NKMEMPAGES, and two new options NKMEMPAGES_MIN and
NKMEMPAGES_MAX allow the user to configure the bounds in the kernel
config file.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/include/param.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/include/param.h b/sys/arch/mvme88k/include/param.h index d1f7b0c4f7b..128d5301cf4 100644 --- a/sys/arch/mvme88k/include/param.h +++ b/sys/arch/mvme88k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.22 2001/11/30 17:45:07 miod Exp $ */ +/* $OpenBSD: param.h,v 1.23 2001/12/05 01:57:15 provos Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1988 University of Utah. @@ -130,11 +130,11 @@ #endif /* - * Size of kernel malloc arena in logical pages - */ -#ifndef NKMEMCLUSTERS -#define NKMEMCLUSTERS (4096*1024/PAGE_SIZE) -#endif + * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized + * logical pages. + */ +#define NKMEMPAGES_MIN_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MAX_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) #define MSGBUFSIZE PAGE_SIZE |