42 lines
1.3 KiB
Diff
42 lines
1.3 KiB
Diff
|
From 4a1688ed7d06aef31ef48a018b1f4be7690481fd Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
||
|
Date: Thu, 11 Aug 2022 14:54:22 +0200
|
||
|
Subject: [PATCH 25/29] vdpa: Allow MQ feature in SVQ
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
RH-Author: Laurent Vivier <lvivier@redhat.com>
|
||
|
RH-MergeRequest: 117: vDPA SVQ Multiqueue support
|
||
|
RH-Jira: RHELX-57
|
||
|
RH-Acked-by: Jason Wang <jasowang@redhat.com>
|
||
|
RH-Acked-by: Cindy Lu <lulu@redhat.com>
|
||
|
RH-Acked-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
RH-Commit: [25/25] e416f00fdbcf7af3ddd504e76519510e3bdc57b7 (redhat/centos-stream/src/qemu-kvm)
|
||
|
|
||
|
Upstream: Not merged yet
|
||
|
|
||
|
Finally enable SVQ with MQ feature.
|
||
|
|
||
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
|
||
|
---
|
||
|
net/vhost-vdpa.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
|
||
|
index c6cbe2fb5c..4bc3fd01a8 100644
|
||
|
--- a/net/vhost-vdpa.c
|
||
|
+++ b/net/vhost-vdpa.c
|
||
|
@@ -94,6 +94,7 @@ static const uint64_t vdpa_svq_device_features =
|
||
|
BIT_ULL(VIRTIO_NET_F_MRG_RXBUF) |
|
||
|
BIT_ULL(VIRTIO_NET_F_STATUS) |
|
||
|
BIT_ULL(VIRTIO_NET_F_CTRL_VQ) |
|
||
|
+ BIT_ULL(VIRTIO_NET_F_MQ) |
|
||
|
BIT_ULL(VIRTIO_F_ANY_LAYOUT) |
|
||
|
BIT_ULL(VIRTIO_NET_F_CTRL_MAC_ADDR) |
|
||
|
BIT_ULL(VIRTIO_NET_F_RSC_EXT) |
|
||
|
--
|
||
|
2.31.1
|
||
|
|