Module Name: src
Committed By: christos
Date: Mon Jan 13 20:36:44 UTC 2020
Modified Files:
src/sys/arch/arm/include/arm32: vmparam.h
Log Message:
Revert previous; we don't want arm to have variable page size. Instead
nick@ is fixing the cache pages issue to use a separate pool.
To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 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.46 src/sys/arch/arm/include/arm32/vmparam.h:1.47
--- src/sys/arch/arm/include/arm32/vmparam.h:1.46 Sat Jan 11 14:06:34 2020
+++ src/sys/arch/arm/include/arm32/vmparam.h Mon Jan 13 15:36:44 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.46 2020/01/11 19:06:34 christos Exp $ */
+/* $NetBSD: vmparam.h,v 1.47 2020/01/13 20:36:44 christos Exp $ */
/*
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -84,11 +84,6 @@
#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
*/