diff options
| author | Eugenio Pérez <eperezma@redhat.com> | 2022-03-14 18:34:44 +0100 |
|---|---|---|
| committer | Jason Wang <jasowang@redhat.com> | 2022-03-15 13:57:44 +0800 |
| commit | 4725a4181b0fd5b646c51f079d7eac753b14b094 (patch) | |
| tree | aad20294b423827c12eed4b496b2b6edaebd8ce2 /hw/virtio/vhost-shadow-virtqueue.h | |
| parent | a8ac88585da1a3ae9c48bfd9e04430e895dc912d (diff) | |
| download | focaccia-qemu-4725a4181b0fd5b646c51f079d7eac753b14b094.tar.gz focaccia-qemu-4725a4181b0fd5b646c51f079d7eac753b14b094.zip | |
vhost: Add vhost_svq_valid_features to shadow vq
This allows SVQ to negotiate features with the guest and the device. For the device, SVQ is a driver. While this function bypasses all non-transport features, it needs to disable the features that SVQ does not support when forwarding buffers. This includes packed vq layout, indirect descriptors or event idx. Future changes can add support to offer more features to the guest, since the use of VirtQueue gives this for free. This is left out at the moment for simplicity. Signed-off-by: Eugenio Pérez <eperezma@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/virtio/vhost-shadow-virtqueue.h')
| -rw-r--r-- | hw/virtio/vhost-shadow-virtqueue.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/virtio/vhost-shadow-virtqueue.h b/hw/virtio/vhost-shadow-virtqueue.h index cbc5213579..9e12f77201 100644 --- a/hw/virtio/vhost-shadow-virtqueue.h +++ b/hw/virtio/vhost-shadow-virtqueue.h @@ -33,6 +33,8 @@ typedef struct VhostShadowVirtqueue { EventNotifier svq_call; } VhostShadowVirtqueue; +bool vhost_svq_valid_features(uint64_t features, Error **errp); + void vhost_svq_set_svq_kick_fd(VhostShadowVirtqueue *svq, int svq_kick_fd); void vhost_svq_set_svq_call_fd(VhostShadowVirtqueue *svq, int call_fd); |