From patchwork Tue Sep 18 11:40:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 184682 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6B65F2C009D for ; Tue, 18 Sep 2012 21:42:19 +1000 (EST) Received: from localhost ([::1]:34057 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDwC0-0000kl-3x for incoming@patchwork.ozlabs.org; Tue, 18 Sep 2012 07:42:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDwAn-0007CM-9X for qemu-devel@nongnu.org; Tue, 18 Sep 2012 07:41:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TDwAi-0005JZ-HB for qemu-devel@nongnu.org; Tue, 18 Sep 2012 07:41:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58702) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDwAi-0005JI-8m for qemu-devel@nongnu.org; Tue, 18 Sep 2012 07:40:56 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8IBethU018237 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 18 Sep 2012 07:40:55 -0400 Received: from dhcp-5-188.str.redhat.com (dhcp-5-175.str.redhat.com [10.32.5.175]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q8IBegGV028821; Tue, 18 Sep 2012 07:40:54 -0400 From: Kevin Wolf To: qemu-devel@nongnu.org Date: Tue, 18 Sep 2012 13:40:37 +0200 Message-Id: <1347968442-8860-12-git-send-email-kwolf@redhat.com> In-Reply-To: <1347968442-8860-1-git-send-email-kwolf@redhat.com> References: <1347968442-8860-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com Subject: [Qemu-devel] [RFC PATCH 11/16] qcow2: Add error handling to the l2meta coroutine X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Not exactly bisectable, but one large patch isn't much better either :-( m->error is used to allow bdrv_drain() to stop with l2meta in error state rather than go into an endless loop. Signed-off-by: Kevin Wolf --- block/qcow2.c | 44 ++++++++++++++++++++++++++++++++++++++++---- block/qcow2.h | 3 +++ 2 files changed, 43 insertions(+), 4 deletions(-) diff --git a/block/qcow2.c b/block/qcow2.c index 2e220c7..e001436 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -771,11 +771,33 @@ static void coroutine_fn process_l2meta(void *opaque) m->sleeping = false; } +again: qemu_co_mutex_lock(&s->lock); ret = qcow2_alloc_cluster_link_l2(bs, m); if (ret < 0) { - /* FIXME */ + /* + * This is a nasty situation: We have already completed the allocation + * write request and returned success, so just failing it isn't + * possible. We need to make sure to return an error during the next + * flush. + * + * However, we still can't drop the l2meta because we want I/O errors + * to be recoverable e.g. after the block device has been grown or the + * network connection restored. Sleep until the next flush comes and + * then retry. + */ + s->flush_error = ret; + + qemu_co_mutex_unlock(&s->lock); + qemu_co_rwlock_unlock(&s->l2meta_flush); + m->sleeping = true; + m->error = true; + qemu_coroutine_yield(); + m->error = false; + m->sleeping = false; + qemu_co_rwlock_rdlock(&s->l2meta_flush); + goto again; } run_dependent_requests(s, m); @@ -812,14 +834,27 @@ static bool qcow2_drain(BlockDriverState *bs) { BDRVQcowState *s = bs->opaque; QCowL2Meta *m; + bool busy = false; QLIST_FOREACH(m, &s->cluster_allocs, next_in_flight) { - if (m->sleeping) { + if (m->sleeping && !m->error) { qemu_coroutine_enter(m->co, NULL); } } - return !QLIST_EMPTY(&s->cluster_allocs); + /* + * If there's still a sleeping l2meta, then an error must have occured. + * Don't consider l2metas in this state as busy, they only get active on + * flushes. + */ + QLIST_FOREACH(m, &s->cluster_allocs, next_in_flight) { + if (!m->sleeping) { + busy = true; + break; + } + } + + return busy; } static coroutine_fn int qcow2_co_writev(BlockDriverState *bs, @@ -1648,7 +1683,8 @@ static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs) } } - ret = 0; + ret = s->flush_error; + s->flush_error = 0; fail: qemu_co_mutex_unlock(&s->lock); resume_l2meta(s); diff --git a/block/qcow2.h b/block/qcow2.h index 8bf145c..1c4dc0e 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -171,6 +171,8 @@ typedef struct BDRVQcowState { CoRwlock l2meta_flush; bool in_l2meta_flush; + int flush_error; + uint32_t crypt_method; /* current crypt method, 0 if no key yet */ uint32_t crypt_method_header; AES_KEY aes_encrypt_key; @@ -250,6 +252,7 @@ typedef struct QCowL2Meta * be reentered in order to cancel the timer. */ bool sleeping; + bool error; /** Coroutine that handles delayed COW and updates L2 entry */ Coroutine *co;