Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 May 2010 18:09:34 +0000 (UTC)
From:      Alan Cox <alc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r207531 - head/sys/vm
Message-ID:  <201005021809.o42I9YEe034614@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005021809.o42I9YEe034614>