[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 05/19] vhost: Move vhost_svq_kick call to vhost_svq_add
From: |
Eugenio Pérez |
Subject: |
[PATCH v3 05/19] vhost: Move vhost_svq_kick call to vhost_svq_add |
Date: |
Fri, 15 Jul 2022 19:18:20 +0200 |
The series needs to expose vhost_svq_add with full functionality,
including kick
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
---
hw/virtio/vhost-shadow-virtqueue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/virtio/vhost-shadow-virtqueue.c
b/hw/virtio/vhost-shadow-virtqueue.c
index fd1839cec5..e5a4a62daa 100644
--- a/hw/virtio/vhost-shadow-virtqueue.c
+++ b/hw/virtio/vhost-shadow-virtqueue.c
@@ -246,6 +246,7 @@ static bool vhost_svq_add(VhostShadowVirtqueue *svq,
VirtQueueElement *elem)
}
svq->ring_id_maps[qemu_head] = elem;
+ vhost_svq_kick(svq);
return true;
}
@@ -306,7 +307,6 @@ static void vhost_handle_guest_kick(VhostShadowVirtqueue
*svq)
/* VQ is broken, just return and ignore any other kicks */
return;
}
- vhost_svq_kick(svq);
}
virtio_queue_set_notification(svq->vq, true);
--
2.31.1
- [PATCH v3 00/19] vdpa net devices Rx filter change notification with Shadow VQ, Eugenio Pérez, 2022/07/15
- [PATCH v3 01/19] vhost: move descriptor translation to vhost_svq_vring_write_descs, Eugenio Pérez, 2022/07/15
- [PATCH v3 02/19] virtio-net: Expose MAC_TABLE_ENTRIES, Eugenio Pérez, 2022/07/15
- [PATCH v3 05/19] vhost: Move vhost_svq_kick call to vhost_svq_add,
Eugenio Pérez <=
- [PATCH v3 04/19] vhost: Reorder vhost_svq_kick, Eugenio Pérez, 2022/07/15
- [PATCH v3 06/19] vhost: Check for queue full at vhost_svq_add, Eugenio Pérez, 2022/07/15
- [PATCH v3 07/19] vhost: Decouple vhost_svq_add from VirtQueueElement, Eugenio Pérez, 2022/07/15
- [PATCH v3 09/19] vhost: Track number of descs in SVQDescState, Eugenio Pérez, 2022/07/15
- [PATCH v3 08/19] vhost: Add SVQDescState, Eugenio Pérez, 2022/07/15
- [PATCH v3 03/19] virtio-net: Expose ctrl virtqueue logic, Eugenio Pérez, 2022/07/15
- [PATCH v3 13/19] vhost: Add svq avail_handler callback, Eugenio Pérez, 2022/07/15
- [PATCH v3 12/19] vhost: add vhost_svq_poll, Eugenio Pérez, 2022/07/15
- [PATCH v3 11/19] vhost: Expose vhost_svq_add, Eugenio Pérez, 2022/07/15
- [PATCH v3 15/19] vdpa: manual forward CVQ buffers, Eugenio Pérez, 2022/07/15