diff options
author | Eugenio Pérez <eperezma@redhat.com> | 2023-03-07 18:00:18 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2023-04-21 03:08:21 -0400 |
commit | 0d74e2b785ed0391316479ccf97c8f1ad5966145 (patch) | |
tree | ecf5ffc6ec1e665432c87bf97ffc33f85f8de969 /net | |
parent | 607a079b29a896b3752ef8a14d746765473c07bf (diff) | |
download | qemu-0d74e2b785ed0391316479ccf97c8f1ad5966145.zip qemu-0d74e2b785ed0391316479ccf97c8f1ad5966145.tar.gz qemu-0d74e2b785ed0391316479ccf97c8f1ad5966145.tar.bz2 |
vdpa: accept VIRTIO_NET_F_SPEED_DUPLEX in SVQ
There is no reason to block it as it has nothing to do with the vrings.
All the support of the feature comes via config space.
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Suggested-by: Alvaro Karsz <alvaro.karsz@solid-run.com>
Message-Id: <20230307170018.260557-1-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/vhost-vdpa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index 99904a0..37cdc84 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -104,7 +104,8 @@ static const uint64_t vdpa_svq_device_features = /* VHOST_F_LOG_ALL is exposed by SVQ */ BIT_ULL(VHOST_F_LOG_ALL) | BIT_ULL(VIRTIO_NET_F_RSC_EXT) | - BIT_ULL(VIRTIO_NET_F_STANDBY); + BIT_ULL(VIRTIO_NET_F_STANDBY) | + BIT_ULL(VIRTIO_NET_F_SPEED_DUPLEX); #define VHOST_VDPA_NET_CVQ_ASID 1 |