o Update locking around vm_object_page_remove() in vm_map_clean()
to use the new macros. o Remove unnecessary increment and decrement of the vm_object's reference count in vm_map_clean().
This commit is contained in:
parent
4268019871
commit
84bd67ae36
@ -1981,14 +1981,12 @@ vm_map_clean(
|
||||
if (object && invalidate &&
|
||||
((object->type == OBJT_VNODE) ||
|
||||
(object->type == OBJT_DEVICE))) {
|
||||
vm_object_reference(object);
|
||||
vm_object_lock(object);
|
||||
VM_OBJECT_LOCK(object);
|
||||
vm_object_page_remove(object,
|
||||
OFF_TO_IDX(offset),
|
||||
OFF_TO_IDX(offset + size + PAGE_MASK),
|
||||
FALSE);
|
||||
vm_object_unlock(object);
|
||||
vm_object_deallocate(object);
|
||||
VM_OBJECT_UNLOCK(object);
|
||||
}
|
||||
start += size;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user