diff options
| author | thorpej <thorpej@NetBSD.org> | 2000-02-11 19:25:12 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2000-02-11 19:25:12 +0000 |
| commit | dded044fc221aa4f90634115b84d3d68a37287f3 (patch) | |
| tree | 66ac2e40d6cc0085f0e3bce91e28ae713c70eb64 /sys/arch/atari/include/param.h | |
| parent | eb9cbbe29404f2d954862a2ea303760479cb8a1d (diff) | |
Update for the NKMEMPAGES changes.
Diffstat (limited to 'sys/arch/atari/include/param.h')
| -rw-r--r-- | sys/arch/atari/include/param.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/atari/include/param.h b/sys/arch/atari/include/param.h index d9c45ce106a..528498220b1 100644 --- a/sys/arch/atari/include/param.h +++ b/sys/arch/atari/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.26 1999/12/04 21:20:16 ragge Exp $ */ +/* $NetBSD: param.h,v 1.27 2000/02/11 19:25:14 thorpej Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -68,11 +68,11 @@ #define NPTEPG (NBPG/(sizeof (pt_entry_t))) /* - * Size of kernel malloc arena in NBPG-sized logical pages + * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized + * logical pages. */ -#ifndef NKMEMCLUSTERS -# define NKMEMCLUSTERS (3072 * 1024 / NBPG) -#endif +#define NKMEMPAGES_MIN_DEFAULT ((3 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MAX_DEFAULT ((3 * 1024 * 1024) >> PAGE_SHIFT) #include <machine/intr.h> |
