summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2001-12-27 22:33:46 +0000
committermiod <miod@openbsd.org>2001-12-27 22:33:46 +0000
commit6d47122c74a6f12d9d2f0a77232cd0959177b536 (patch)
tree69b1ab36583bd34ed1b5bb7710f19c00d913f52e
parentget rid of packet_integrity_check, use packet_done() instead. (diff)
downloadwireguard-openbsd-6d47122c74a6f12d9d2f0a77232cd0959177b536.tar.xz
wireguard-openbsd-6d47122c74a6f12d9d2f0a77232cd0959177b536.zip
Don't mess with the PMAP_PHYSSEG flags there. It's UVM playground, not really
ours.
-rw-r--r--sys/arch/mvme88k/mvme88k/pmap.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c
index e652d1dacc9..f8e0e907526 100644
--- a/sys/arch/mvme88k/mvme88k/pmap.c
+++ b/sys/arch/mvme88k/mvme88k/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.60 2001/12/24 04:12:40 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.61 2001/12/27 22:33:46 miod Exp $ */
/*
* Copyright (c) 2001 Miodrag Vallat
* Copyright (c) 1998-2001 Steve Murphree, Jr.
@@ -1791,11 +1791,6 @@ pmap_remove_range(pmap, s, e)
if (opte & PG_M) {
if (PMAP_MANAGED(pa)) {
- struct vm_page *pg;
-
- pg = PHYS_TO_VM_PAGE(opte & PG_FRAME);
- pg->flags &= ~PG_CLEAN;
-
/* keep track ourselves too */
*pa_to_attribute(pa) = TRUE;
}
@@ -1976,10 +1971,6 @@ remove_all_Retry:
flush_atc_entry(users, va, kflush);
if (opte & PG_M) {
- struct vm_page *pg;
-
- pg = PHYS_TO_VM_PAGE(phys);
- pg->flags &= ~PG_CLEAN;
/* keep track ourselves too */
*pa_to_attribute(phys) = TRUE;
}