Module Name:    src
Committed By:   christos
Date:           Sat Jan 11 19:06:35 UTC 2020

Modified Files:
        src/sys/arch/arm/include/arm32: vmparam.h

Log Message:
Define the min and max page size supported for the benefit of jemalloc


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/arm/include/arm32/vmparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/include/arm32/vmparam.h
diff -u src/sys/arch/arm/include/arm32/vmparam.h:1.45 src/sys/arch/arm/include/arm32/vmparam.h:1.46
--- src/sys/arch/arm/include/arm32/vmparam.h:1.45	Wed Jun 19 05:54:42 2019
+++ src/sys/arch/arm/include/arm32/vmparam.h	Sat Jan 11 14:06:34 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: vmparam.h,v 1.45 2019/06/19 09:54:42 skrll Exp $	*/
+/*	$NetBSD: vmparam.h,v 1.46 2020/01/11 19:06:34 christos Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -84,6 +84,11 @@
 #define	PAGE_SIZE	(1 << PAGE_SHIFT)
 #define	PAGE_MASK	(PAGE_SIZE - 1)
 
+#define	MIN_PAGE_SHIFT	12			/* normal */
+#define	MAX_PAGE_SHIFT	13			/* _ARM_ARCH_6 */
+#define	MIN_PAGE_SIZE	(1 << MIN_PAGE_SHIFT)
+#define	MAX_PAGE_SIZE	(1 << MAX_PAGE_SHIFT)
+
 /*
  * Mach derived constants
  */

Reply via email to