qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 3/8] virtio: add AioContext-specific function fo


From: Cornelia Huck
Subject: Re: [Qemu-devel] [PATCH 3/8] virtio: add AioContext-specific function for host notifiers
Date: Tue, 16 Feb 2016 10:42:40 +0100

On Tue, 16 Feb 2016 15:20:17 +0800
Fam Zheng <address@hidden> wrote:

> On Sun, 02/14 18:17, Paolo Bonzini wrote:

> > +void virtio_queue_aio_set_host_notifier_handler(VirtQueue *vq, AioContext 
> > *ctx,
> > +                                                bool assign, bool 
> > set_handler)
> > +{
> > +    if (assign && set_handler) {
> > +        aio_set_event_notifier(ctx, &vq->host_notifier, true,
> > +                               virtio_queue_host_notifier_read);
> > +    } else {
> > +        aio_set_event_notifier(ctx, &vq->host_notifier, true, NULL);
> > +    }
> > +    if (!assign) {
> > +        /* Test and clear notifier before after disabling event,
> 
> Does "before after" mean "after"? :)

I think that was copied verbatim from
virtio_queue_set_host_notifier_fd_handler :)




reply via email to

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