From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48952) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yt9eY-0000po-Jd for qemu-devel@nongnu.org; Fri, 15 May 2015 03:03:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yt9eT-000597-0f for qemu-devel@nongnu.org; Fri, 15 May 2015 03:03:26 -0400 Date: Fri, 15 May 2015 15:03:12 +0800 From: Fam Zheng Message-ID: <20150515070312.GA13255@ad.nay.redhat.com> References: <1431669868-26804-1-git-send-email-famz@redhat.com> <1431669868-26804-13-git-send-email-famz@redhat.com> <55559729.2010809@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55559729.2010809@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 12/12] virtio-scsi-dataplane: Add "device IO" op blocker listener List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-block@nongnu.org, armbru@redhat.com, qemu-devel@nongnu.org, mreitz@redhat.com, Stefan Hajnoczi On Fri, 05/15 08:50, Paolo Bonzini wrote: > > > On 15/05/2015 08:04, Fam Zheng wrote: > > @@ -111,6 +111,10 @@ static void virtio_scsi_iothread_handle_ctrl(EventNotifier *notifier) > > VirtIOSCSI *s = VIRTIO_SCSI(vring->parent); > > VirtIOSCSIReq *req; > > > > + if (s->pause_counter) { > > + virtio_scsi_stop_ioeventfd(s); > > + return; > > + } > > event_notifier_test_and_clear(notifier); > > while ((req = virtio_scsi_pop_req_vring(s, vring))) { > > virtio_scsi_handle_ctrl_req(s, req); > > @@ -124,6 +128,10 @@ static void virtio_scsi_iothread_handle_event(EventNotifier *notifier) > > VirtIOSCSI *s = vring->parent; > > VirtIODevice *vdev = VIRTIO_DEVICE(s); > > > > + if (s->pause_counter) { > > + virtio_scsi_stop_ioeventfd(s); > > + return; > > + } > > event_notifier_test_and_clear(notifier); > > > > if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) { > > Why are these needed? Not strictly. I think it's something like an "assert(!s->pause_counter)" but said gently. Fam