From b5b274360a3812cdb97291613b347d2d3708a69f Mon Sep 17 00:00:00 2001 From: alc Date: Fri, 21 Jul 2006 23:22:49 +0000 Subject: Retire debug.mpsafevm. None of the architectures supported in CVS require it any longer. --- sys/vm/vm_map.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'sys/vm/vm_map.c') diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index da222d7..ff586f2 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -2195,11 +2195,9 @@ vm_map_sync( } } - if (invalidate) { - VM_LOCK_GIANT(); + if (invalidate) pmap_remove(map->pmap, start, end); - VM_UNLOCK_GIANT(); - } + /* * Make a second pass, cleaning/uncaching pages from the indicated * objects as we go. @@ -2363,11 +2361,7 @@ vm_map_delete(vm_map_t map, vm_offset_t start, vm_offset_t end) vm_map_entry_unwire(map, entry); } - if (!map->system_map) - VM_LOCK_GIANT(); pmap_remove(map->pmap, entry->start, entry->end); - if (!map->system_map) - VM_UNLOCK_GIANT(); /* * Delete the entry (which may delete the object) only after -- cgit v1.1