summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 03:57:50 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 03:57:50 +0000
commitb0f76f26695b0b23bc458cd46fe6a64a00ebc8d7 (patch)
tree8a56f2ee0f46bbcba748be9ef8ba29288534a619 /sys/arch/alpha
parent4cdc674d3aabc66708b8a64d951cf6a868c86e6e (diff)
PAGE_SIZE on alpha is 8192 thus PAGE_SHIFT should be 13, not 12.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h
index 228ebc25678..5eb612be3b2 100644
--- a/sys/arch/alpha/include/param.h
+++ b/sys/arch/alpha/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.15 2000/11/19 01:11:29 art Exp $ */
+/* $OpenBSD: param.h,v 1.16 2000/11/24 03:57:49 millert Exp $ */
/* $NetBSD: param.h,v 1.30 2000/06/09 16:03:04 thorpej Exp $ */
/*
@@ -74,7 +74,7 @@
#define PGOFSET (NBPG-1) /* byte off. into pg */
#define PGSHIFT ALPHA_PGSHIFT /* LOG2(NBPG) */
-#define PAGE_SHIFT 12
+#define PAGE_SHIFT 13
#define PAGE_SIZE (1 << PAGE_SHIFT)
#define PAGE_MASK (PAGE_SIZE - 1)