From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dp9Tl-0003MQ-0g for qemu-devel@nongnu.org; Tue, 05 Sep 2017 04:45:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dp9Tg-0000lX-ER for qemu-devel@nongnu.org; Tue, 05 Sep 2017 04:45:05 -0400 Date: Tue, 5 Sep 2017 10:44:31 +0200 From: Kevin Wolf Message-ID: <20170905084431.GA4633@localhost.localdomain> References: <20170830100605.22694-1-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170830100605.22694-1-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH] block: Cleanup BMDS in bdrv_close_all List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, qemu-block@nongnu.org, Juan Quintela , qemu-stable@nongnu.org, peterx@redhat.com, Max Reitz , "Dr. David Alan Gilbert" Am 30.08.2017 um 12:06 hat Fam Zheng geschrieben: > This fixes the assertion due to op blockers added by BMDS: > > block.c:3248: bdrv_delete: Assertion `bdrv_op_blocker_is_empty(bs)' failed. > > Reproducer: simply start block migration and quit QEMU before it ends. > > Cc: qemu-stable@nongnu.org > Signed-off-by: Fam Zheng > --- > block.c | 2 ++ > migration/block.c | 2 +- > migration/block.h | 1 + > stubs/Makefile.objs | 1 + > stubs/block-migration.c | 6 ++++++ > 5 files changed, 11 insertions(+), 1 deletion(-) > create mode 100644 stubs/block-migration.c > > diff --git a/block.c b/block.c > index 3308814bba..508a57274d 100644 > --- a/block.c > +++ b/block.c > @@ -43,6 +43,7 @@ > #include "qemu/cutils.h" > #include "qemu/id.h" > #include "qapi/util.h" > +#include "migration/block.h" > > #ifdef CONFIG_BSD > #include > @@ -3111,6 +3112,7 @@ static void bdrv_close(BlockDriverState *bs) > > void bdrv_close_all(void) > { > + block_migration_cleanup_bmds(); > block_job_cancel_sync_all(); > nbd_export_close_all(); This is before bdrv_drain_all(). Can't we still have a block migration request in flight, whose callback will then dereference a stale pointer? Kevin