diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-03 18:29:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-03 18:29:38 +0000 |
commit | cdefc4c4a69be6f8926717f39bd0cb30fbc1928e (patch) | |
tree | 75245f46c7b783c31bd0caeedb880e6c8910d54a /sys | |
parent | 596fd718a5efaf31a5dce3fef1a5c0922dcec36c (diff) |
Do not keep the EOP check bits in PGF_PRESERVE.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mips64/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/pmap.h b/sys/arch/mips64/include/pmap.h index d8cdc88a4f1..b46018bf17c 100644 --- a/sys/arch/mips64/include/pmap.h +++ b/sys/arch/mips64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.35 2014/03/31 20:21:19 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.36 2014/04/03 18:29:37 miod Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -133,7 +133,7 @@ typedef struct pmap { #define PGF_ATTR_REF PG_PMAP3 #define PGF_EOP_CHECKED PG_PMAP4 #define PGF_EOP_VULN PG_PMAP5 -#define PGF_PRESERVE (PGF_ATTR_MOD | PGF_ATTR_REF | PGF_EOP_CHECKED | PGF_EOP_VULN) +#define PGF_PRESERVE (PGF_ATTR_MOD | PGF_ATTR_REF) #define PMAP_NOCACHE PMAP_MD0 |