From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55378) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKX4y-000365-DQ for qemu-devel@nongnu.org; Tue, 26 Mar 2013 12:50:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKX4t-0001B9-Gi for qemu-devel@nongnu.org; Tue, 26 Mar 2013 12:50:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40939) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKX4t-0001Ap-9X for qemu-devel@nongnu.org; Tue, 26 Mar 2013 12:50:27 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r2QGoQoF009164 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 26 Mar 2013 12:50:26 -0400 From: Kevin Wolf Date: Tue, 26 Mar 2013 17:49:55 +0100 Message-Id: <1364316613-31223-4-git-send-email-kwolf@redhat.com> In-Reply-To: <1364316613-31223-1-git-send-email-kwolf@redhat.com> References: <1364316613-31223-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH v2 03/21] qcow2: Remove bogus unlock of s->lock List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, stefanha@redhat.com The unlock wakes up the next coroutine, but the currently running coroutine will lock it again before it yields, so this doesn't make a lot of sense. Signed-off-by: Kevin Wolf --- block/qcow2.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/block/qcow2.c b/block/qcow2.c index 8ea696a..3f7edf5 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -869,9 +869,7 @@ static coroutine_fn int qcow2_co_writev(BlockDriverState *bs, QLIST_REMOVE(l2meta, next_in_flight); } - qemu_co_mutex_unlock(&s->lock); qemu_co_queue_restart_all(&l2meta->dependent_requests); - qemu_co_mutex_lock(&s->lock); g_free(l2meta); l2meta = NULL; -- 1.8.1.4