From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40672) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ypy7D-0005mC-9P for qemu-devel@nongnu.org; Wed, 06 May 2015 08:07:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ypy7C-0002FM-Dh for qemu-devel@nongnu.org; Wed, 06 May 2015 08:07:51 -0400 Message-ID: <554A040B.7030108@redhat.com> Date: Wed, 06 May 2015 14:07:39 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1430911419-8256-1-git-send-email-famz@redhat.com> <1430911419-8256-7-git-send-email-famz@redhat.com> In-Reply-To: <1430911419-8256-7-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC PATCH 6/7] virtio-blk: Don't handle output when there is "device IO" op blocker List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: Kevin Wolf , qemu-block@nongnu.org, jcody@redhat.com, armbru@redhat.com, mreitz@redhat.com, Stefan Hajnoczi On 06/05/2015 13:23, Fam Zheng wrote: > virtio-blk now listens to op blocker change of the associated block > backend. > > Up on setting op blocker on BLOCK_OP_TYPE_DEVICE_IO: > > non-dataplane: > 1) Set VirtIOBlock.paused > 2) In virtio_blk_handle_output, do nothing if VirtIOBlock.paused > > dataplane: > 1) Clear the host event notifier > 2) In handle_notify, do nothing if VirtIOBlock.paused > > Up on removing the op blocker: > > non-dataplane: > 1) Clear VirtIOBlock.paused > 2) Schedule a BH on the AioContext of the backend, which calls > virtio_blk_handle_output, so that the previous unhandled kicks can > make progress > > dataplane: > 1) Set the host event notifier > 2) Notify the host event notifier so that unhandled events are > processed > > Signed-off-by: Fam Zheng Does non-dataplane need to do anything, since it uses iohandlers rather than aio_set_event_notifier_handler? Paolo