diff options
Diffstat (limited to 'sys/arch/vax/include/param.h')
-rw-r--r-- | sys/arch/vax/include/param.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 334a7611dcc..2cc57f257d8 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.20 2001/07/06 02:07:44 provos Exp $ */ +/* $OpenBSD: param.h,v 1.21 2001/12/05 01:57:15 provos Exp $ */ /* $NetBSD: param.h,v 1.39 1999/10/22 21:14:34 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -125,12 +125,11 @@ #endif /* NMBCLUSTERS */ /* - * Size of kernel malloc arena in NBPG-sized logical pages - */ - -#ifndef NKMEMCLUSTERS -#define NKMEMCLUSTERS (4096*1024/NBPG) -#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) /* * Some macros for units conversion |