qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 2/3] virtio: access ISR atomically


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 2/3] virtio: access ISR atomically
Date: Thu, 17 Nov 2016 14:49:58 -0500 (EST)


----- Original Message -----
> From: "Michael S. Tsirkin" <address@hidden>
> To: "Paolo Bonzini" <address@hidden>
> Cc: address@hidden, "alex williamson" <address@hidden>, address@hidden, 
> address@hidden
> Sent: Thursday, November 17, 2016 6:55:50 PM
> Subject: Re: [PATCH 2/3] virtio: access ISR atomically
> 
> On Wed, Nov 16, 2016 at 07:05:50PM +0100, Paolo Bonzini wrote:
> > @@ -1318,10 +1318,18 @@ void virtio_del_queue(VirtIODevice *vdev, int n)
> >      vdev->vq[n].vring.num_default = 0;
> >  }
> >  
> > +static void virtio_set_isr(VirtIODevice *vdev, int value)
> > +{
> > +    uint8_t old = atomic_read(&vdev->isr);
> > +    if ((old & value) != value) {
> > +        atomic_or(&vdev->isr, value);
> > +    }
> > +}
> > +
> 
> Paolo, can you pls comment on why is it done like this,
> as opposed to a single atomic_or?

To avoid cacheline bouncing in the common case where MSI is active
but the host doesn't read ISR.

Paolo



reply via email to

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