From b062992f9de20b353f3449774d35dfd09a6c6e5b Mon Sep 17 00:00:00 2001 From: petrov Date: Thu, 26 Feb 2004 20:24:29 +0000 Subject: [PATCH] Correct VA_ALIAS_MASK. From Chuck Silvers. --- sys/arch/sparc64/include/pmap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/sparc64/include/pmap.h b/sys/arch/sparc64/include/pmap.h index e9d7354ca0b4..bc7261815611 100644 --- a/sys/arch/sparc64/include/pmap.h +++ b/sys/arch/sparc64/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.29 2003/08/24 17:52:37 chs Exp $ */ +/* $NetBSD: pmap.h,v 1.30 2004/02/26 20:24:29 petrov Exp $ */ /*- * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -150,7 +150,7 @@ struct prom_map { #define PMAP_SZ_TO_TTE(x) (((x)&0x018)<<58) /* If these bits are different in va's to the same PA then there is an aliasing in the d$ */ -#define VA_ALIAS_MASK (1 << 14) +#define VA_ALIAS_MASK (1 << 13) typedef struct pmap *pmap_t;