1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Correct a typo in vm_object_backing_scan() that originated in r254141.

Specifically, change a lock acquire into a lock release.

MFC after:	3 days
Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Alan Cox 2015-03-07 04:18:40 +00:00
parent 32d52c275d
commit 6a24058fab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279720

View File

@ -1626,7 +1626,7 @@ vm_object_backing_scan(vm_object_t object, int op)
p = next;
continue;
}
VM_OBJECT_WLOCK(backing_object);
VM_OBJECT_WUNLOCK(backing_object);
VM_OBJECT_WUNLOCK(object);
VM_WAIT;
VM_OBJECT_WLOCK(object);