Use vm_object_lock() and vm_object_unlock() in vm_object_deallocate().

(This procedure needs further work, but this change is sufficient for
locking the kmem_object.)
This commit is contained in:
Alan Cox 2003-01-04 19:23:19 +00:00
parent 009f3e7a1e
commit 4dbeceee96
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108676

View file

@ -433,12 +433,12 @@ vm_object_deallocate(vm_object_t object)
{
vm_object_t temp;
mtx_lock(&Giant);
vm_object_lock(object);
while (object != NULL) {
if (object->type == OBJT_VNODE) {
vm_object_vndeallocate(object);
mtx_unlock(&Giant);
vm_object_unlock(object);
return;
}
@ -453,7 +453,7 @@ vm_object_deallocate(vm_object_t object)
*/
object->ref_count--;
if (object->ref_count > 1) {
mtx_unlock(&Giant);
vm_object_unlock(object);
return;
} else if (object->ref_count == 1) {
if (object->shadow_count == 0) {
@ -494,7 +494,7 @@ vm_object_deallocate(vm_object_t object)
continue;
}
}
mtx_unlock(&Giant);
vm_object_unlock(object);
return;
}
doterm:
@ -518,7 +518,7 @@ vm_object_deallocate(vm_object_t object)
vm_object_terminate(object);
object = temp;
}
mtx_unlock(&Giant);
vm_object_unlock(object);
}
/*