diff options
author | 2001-12-07 21:49:15 +0000 | |
---|---|---|
committer | 2001-12-07 21:49:15 +0000 | |
commit | 369e05fe385c61234b1dee49ada936d8fa2df6f8 (patch) | |
tree | 29823b13abfb40dc4e7e13ad881784cfe5be6699 | |
parent | add example for ftp-proxy data connections, to reduce some of the questions (diff) | |
download | wireguard-openbsd-369e05fe385c61234b1dee49ada936d8fa2df6f8.tar.xz wireguard-openbsd-369e05fe385c61234b1dee49ada936d8fa2df6f8.zip |
NKMEMPAGES defines.
-rw-r--r-- | sys/arch/mvme68k/include/param.h | 9 |
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> |