36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
|
|
From 17cd7f504c47c532eae6b8ecfc21b0e5796e08da Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
||
|
|
Date: Wed, 21 Dec 2022 12:50:15 +0100
|
||
|
|
Subject: [PATCH] vdpa: do not handle VIRTIO_NET_F_GUEST_ANNOUNCE in vhost-vdpa
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
So qemu emulates it even in case the device does not support it.
|
||
|
|
|
||
|
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
|
Acked-by: Jason Wang <jasowang@redhat.com>
|
||
|
|
Message-Id: <20221221115015.1400889-5-eperezma@redhat.com>
|
||
|
|
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
|
Signed-off-by: fangyi <eric.fangyi@huawei.com>
|
||
|
|
---
|
||
|
|
net/vhost-vdpa.c | 1 -
|
||
|
|
1 file changed, 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
|
||
|
|
index 48dd9d15f6..3dcf341722 100644
|
||
|
|
--- a/net/vhost-vdpa.c
|
||
|
|
+++ b/net/vhost-vdpa.c
|
||
|
|
@@ -72,7 +72,6 @@ const int vdpa_feature_bits[] = {
|
||
|
|
VIRTIO_F_RING_PACKED,
|
||
|
|
VIRTIO_NET_F_RSS,
|
||
|
|
VIRTIO_NET_F_HASH_REPORT,
|
||
|
|
- VIRTIO_NET_F_GUEST_ANNOUNCE,
|
||
|
|
VIRTIO_NET_F_STATUS,
|
||
|
|
VHOST_INVALID_FEATURE_BIT
|
||
|
|
};
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|