A few more whitespace fixes.

This commit is contained in:
John Baldwin 2008-07-30 21:18:08 +00:00
parent 3677ad363b
commit 3cca4b6fe8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181020
2 changed files with 1 additions and 2 deletions

View File

@ -612,7 +612,6 @@ vm_object_destroy(vm_object_t object)
* Free the space for the object.
*/
uma_zfree(obj_zone, object);
}

View File

@ -205,7 +205,7 @@ vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
retry:
while ((object = vp->v_object) != NULL) {
VM_OBJECT_LOCK(object);
if ((object->flags & OBJ_DEAD) == 0)
if ((object->flags & OBJ_DEAD) == 0)
break;
vm_object_set_flag(object, OBJ_DISCONNECTWNT);
msleep(object, VM_OBJECT_MTX(object), PDROP | PVM, "vadead", 0);