diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-27 22:33:47 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-27 22:33:47 +0000 |
commit | 694644d5907bfbbf5cbf743748a7b18377c83a03 (patch) | |
tree | 7795fceefd0b1a5ca28007cf1c01e12c0b2c351e /sys | |
parent | d5db7d8fc2291d93e995c0fb4298deedd166b337 (diff) |
Don't mess with the PMAP_PHYSSEG flags there. It's UVM playground, not really
ours.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/pmap.c | 11 |
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; } |