summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/amd64/pmap.c2
-rw-r--r--sys/i386/i386/pmap.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index 3fb6cd9..4b39ce0 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -1978,7 +1978,7 @@ validate:
*/
if ((origpte & ~(PG_M|PG_A)) != newpte) {
pte_store(pte, newpte | PG_A);
- /*if (origpte)*/ {
+ if (origpte) {
pmap_invalidate_page(pmap, va);
}
}
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index e1fd67b..b270f72 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -2041,7 +2041,7 @@ validate:
*/
if ((origpte & ~(PG_M|PG_A)) != newpte) {
pte_store(pte, newpte | PG_A);
- /*if (origpte)*/ {
+ if (origpte) {
pmap_invalidate_page(pmap, va);
}
}
OpenPOWER on IntegriCloud