From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50532) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQ4YA-0004Dd-Es for qemu-devel@nongnu.org; Sun, 31 Jan 2016 21:49:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQ4Y9-00037T-LT for qemu-devel@nongnu.org; Sun, 31 Jan 2016 21:49:10 -0500 Date: Mon, 1 Feb 2016 10:49:00 +0800 From: Fam Zheng Message-ID: <20160201024900.GC17009@ad.usersys.redhat.com> References: <1454033989-16996-1-git-send-email-famz@redhat.com> <20160129113126.GA15489@stefanha-x1.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160129113126.GA15489@stefanha-x1.localdomain> Subject: Re: [Qemu-devel] [PATCH v3] blockjob: Fix hang in block_job_finish_sync List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: Kevin Wolf , qemu-block@nongnu.org, Jeff Cody , qemu-devel@nongnu.org, mreitz@redhat.com, pbonzini@redhat.com, jsnow@redhat.com On Fri, 01/29 11:31, Stefan Hajnoczi wrote: > On Fri, Jan 29, 2016 at 10:19:49AM +0800, Fam Zheng wrote: > > @@ -402,6 +407,10 @@ typedef void BlockJobDeferToMainLoopFn(BlockJob *job, void *opaque); > > * AioContext acquired. Block jobs must call bdrv_unref(), bdrv_close(), and > > * anything that uses bdrv_drain_all() in the main loop. > > * > > + * The job->deferred_to_main_loop flag will be set. Caller must clear it once > > + * the deferred work is done and the block job coroutine continues, unless it's > > + * completing immediately. > > + * > > It's not necessary to expose job->deferred_to_main_loop to the user. > Just clear it: > > static void block_job_defer_to_main_loop_bh(void *opaque) > { > BlockJobDeferToMainLoopData *data = opaque; > AioContext *aio_context; > > qemu_bh_delete(data->bh); > > /* Prevent race with block_job_defer_to_main_loop() */ > aio_context_acquire(data->aio_context); > > /* Fetch BDS AioContext again, in case it has changed */ > aio_context = bdrv_get_aio_context(data->job->bs); > aio_context_acquire(aio_context); > > data->fn(data->job, data->opaque); > job->deferred_to_main_loop = false; /* <----- HERE */ Maybe move one line above in case data->fn() does another block_job_defer_to_main_loop()? Fam > > aio_context_release(aio_context); > > aio_context_release(data->aio_context); > > g_free(data); > }