qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-block] [PATCH v3 12/12] virtio-scsi-dataplane: Add "device IO"


From: Paolo Bonzini
Subject: Re: [Qemu-block] [PATCH v3 12/12] virtio-scsi-dataplane: Add "device IO" op blocker listener
Date: Fri, 15 May 2015 08:50:17 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0


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?

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]