svn commit: r207531 - head/sys/vm
Alan Cox
alc at FreeBSD.org
Sun May 2 18:09:34 UTC 2010
Author: alc
Date: Sun May 2 18:09:33 2010
New Revision: 207531
URL: http://svn.freebsd.org/changeset/base/207531
Log:
Correct an error in r207410: Remove an unlock of a lock that is no longer
held.
Modified:
head/sys/vm/vm_object.c
Modified: head/sys/vm/vm_object.c
==============================================================================
--- head/sys/vm/vm_object.c Sun May 2 17:33:46 2010 (r207530)
+++ head/sys/vm/vm_object.c Sun May 2 18:09:33 2010 (r207531)
@@ -1454,7 +1454,6 @@ retry:
* not be changed by this operation.
*/
if ((m->oflags & VPO_BUSY) || m->busy) {
- vm_page_unlock_queues();
VM_OBJECT_UNLOCK(new_object);
m->oflags |= VPO_WANTED;
msleep(m, VM_OBJECT_MTX(orig_object), PVM, "spltwt", 0);
More information about the svn-src-all
mailing list