On Tue, Mar 15, 2016 at 6:54 PM, Stefan Hajnoczi <stefa...@redhat.com> wrote:
> On Mon, Mar 14, 2016 at 03:48:24PM +0100, Ladi Prosek wrote:
>> @@ -130,7 +131,11 @@ void vring_kick(unsigned int ioaddr, struct 
>> vring_virtqueue *vq, int num_added)
>>     vr->avail->idx += num_added;
>>
>>     mb();
>> -   if (!(vr->used->flags & VRING_USED_F_NO_NOTIFY))
>> -           vp_notify(ioaddr, vq->queue_index);
>> +   if (!(vr->used->flags & VRING_USED_F_NO_NOTIFY)) {
>> +           if (ioaddr) {
>
> It would be nice to add /* Legacy virtio */ and /* VIRTIO 1.0 */
> comments here so it's clear that ioaddr is distinguishing between the
> virtio versions.

Will do.

>> diff --git a/src/include/ipxe/virtio-ring.h b/src/include/ipxe/virtio-ring.h
>> index e44d13c..3f7478b 100644
>> --- a/src/include/ipxe/virtio-ring.h
>> +++ b/src/include/ipxe/virtio-ring.h
>> @@ -79,6 +79,7 @@ struct vring_virtqueue {
>>     void *vdata[MAX_QUEUE_NUM];
>>     /* PCI */
>>     int queue_index;
>> +   struct virtio_pci_region notification;
>
> virtio-ring.h should #include "virtio-pci.h" if it uses this struct or
> is there some kind of circular dependency problem?

Will do. There is a circular dependency but virtio-pci.h has a forward
decl so this will work.
_______________________________________________
ipxe-devel mailing list
ipxe-devel@lists.ipxe.org
https://lists.ipxe.org/mailman/listinfo.cgi/ipxe-devel

Reply via email to