From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvmdm-0005R8-Mw for qemu-devel@nongnu.org; Mon, 18 Feb 2019 12:23:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvmdl-0004tl-Px for qemu-devel@nongnu.org; Mon, 18 Feb 2019 12:23:38 -0500 References: <20190218161822.3573-1-kwolf@redhat.com> <20190218161822.3573-8-kwolf@redhat.com> From: Paolo Bonzini Message-ID: <9fe39150-f308-8f2e-0c9d-6d0a31d9329d@redhat.com> Date: Mon, 18 Feb 2019 18:22:59 +0100 MIME-Version: 1.0 In-Reply-To: <20190218161822.3573-8-kwolf@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 07/12] nbd: Increase bs->in_flight during AioContext switch List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf , qemu-block@nongnu.org Cc: mreitz@redhat.com, eblake@redhat.com, stefanha@redhat.com, berrange@redhat.com, qemu-devel@nongnu.org On 18/02/19 17:18, Kevin Wolf wrote: > + /* aio_ctx_switch is only supposed to be set if we're sitting in > + * the qio_channel_yield() below. */ > + assert(!*aio_ctx_switch); > bdrv_dec_in_flight(bs); > qio_channel_yield(ioc, G_IO_IN); > - bdrv_inc_in_flight(bs); > + if (*aio_ctx_switch) { > + /* nbd_client_attach_aio_context() already increased in_flight > + * when scheduling this coroutine for reentry */ > + *aio_ctx_switch = false; > + } else { > + bdrv_inc_in_flight(bs); > + } Hmm, my first thought would have been to do the bdrv_inc_in_flight(bs); unconditionally here, and in nbd_connection_entry do the opposite, like if (s->aio_ctx_switch) { s->aio_ctx_switch = false; bdrv_dec_in_flight(bs); } but I guess the problem is that then bdrv_drain could hang. So my question is: 1) is there a testcase that shows the problem with this "obvious" refactoring; 2) maybe instead of aio_co_schedul-ing client->connection_co and having the s->aio_ctx_switch flag, you could go through a bottom half that does the bdrv_inc_in_flight and then enters client->connection_co? Paolo