Sun3 and Sun3x both use 8K pages. Make PAGE_* and friends into

compile-time constants.
This commit is contained in:
thorpej 2000-11-14 19:34:26 +00:00
parent fc082857f5
commit c9ff0b7af1
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vmparam.h,v 1.25 2000/01/26 09:44:13 tsutsui Exp $ */
/* $NetBSD: vmparam.h,v 1.26 2000/11/14 19:34:26 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -33,6 +33,14 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* We use 8K pages on both the sun3 and sun3x. Override PAGE_*
* to be compile-time constants.
*/
#define PAGE_SHIFT 13
#define PAGE_SIZE (1 << PAGE_SHIFT)
#define PAGE_MASK (PAGE_SIZE - 1)
#ifdef _SUN3_
#include <machine/vmparam3.h>
#endif /* SUN3 */