diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-10 09:23:12 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-10 09:23:12 +0000 |
commit | cf6163b5efce518222d83d21db6e88f58bfb1ca4 (patch) | |
tree | c3f20c824c55faea5de6ba8deb83f41d9fb0bf65 | |
parent | 3352431321411238f49bf5190f11f46b77d580f4 (diff) |
Switch sparc to PMAP_NEW. I've been running with that code for ages.
-rw-r--r-- | sys/arch/sparc/include/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/param.h b/sys/arch/sparc/include/param.h index f7ef8e11e70..570d1aeda51 100644 --- a/sys/arch/sparc/include/param.h +++ b/sys/arch/sparc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.17 2001/05/05 20:56:52 art Exp $ */ +/* $OpenBSD: param.h,v 1.18 2001/05/10 09:23:11 art Exp $ */ /* $NetBSD: param.h,v 1.29 1997/03/10 22:50:37 pk Exp $ */ /* @@ -133,6 +133,8 @@ extern int nbpg, pgofset, pgshift; #define NKMEMCLUSTERS (6 * 1024 * 1024 / PAGE_SIZE) #endif +#define PMAP_NEW + /* pages ("clicks") to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) #define dtoc(x) ((x) >> (PGSHIFT - DEV_BSHIFT)) |