summaryrefslogtreecommitdiff
path: root/sys/arch/arm64/include
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2023-12-14 13:26:50 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2023-12-14 13:26:50 +0000
commit4023446711dc98a1c7a39f0ef82a9aed7bee8947 (patch)
tree72196527deb60a6d8b4842100a1425d55abe439f /sys/arch/arm64/include
parent6bdff00f1ce26d8f68d092f5288eeb95a4b1fee4 (diff)
NKMEMPAGES_MAX_DEFAULT is no longer used. Remove it from param.h.
OK miod@
Diffstat (limited to 'sys/arch/arm64/include')
-rw-r--r--sys/arch/arm64/include/param.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/arm64/include/param.h b/sys/arch/arm64/include/param.h
index 06eefdee8ec..74792d7c8e5 100644
--- a/sys/arch/arm64/include/param.h
+++ b/sys/arch/arm64/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.6 2018/09/14 13:58:20 claudio Exp $ */
+/* $OpenBSD: param.h,v 1.7 2023/12/14 13:26:49 claudio Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -69,12 +69,6 @@
#define MSGBUFSIZE (16 * PAGE_SIZE) /* default message buffer size */
#endif
-/*
- * Maximum size of the kernel malloc arena in PAGE_SIZE-sized
- * logical pages.
- */
-#define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT)
-
#define STACKALIGNBYTES (16 - 1)
#define STACKALIGN(p) ((u_long)(p) &~ STACKALIGNBYTES)