|
|
29b115 |
From 9a290bd74f983f3a65aa9ec5df2da9aa94bfdecd Mon Sep 17 00:00:00 2001
|
|
|
29b115 |
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
|
|
29b115 |
Date: Thu, 21 Jul 2022 16:05:42 +0200
|
|
|
29b115 |
Subject: [PATCH 25/32] vdpa: Extract get features part from
|
|
|
29b115 |
vhost_vdpa_get_max_queue_pairs
|
|
|
29b115 |
MIME-Version: 1.0
|
|
|
29b115 |
Content-Type: text/plain; charset=UTF-8
|
|
|
29b115 |
Content-Transfer-Encoding: 8bit
|
|
|
29b115 |
|
|
|
29b115 |
RH-Author: Eugenio Pérez <eperezma@redhat.com>
|
|
|
29b115 |
RH-MergeRequest: 108: Net Control Virtqueue shadow Support
|
|
|
29b115 |
RH-Commit: [25/27] 654ad68e10a4df84cced923c64e72d500721ad67 (eperezmartin/qemu-kvm)
|
|
|
29b115 |
RH-Bugzilla: 1939363
|
|
|
29b115 |
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
|
|
|
29b115 |
RH-Acked-by: Cindy Lu <lulu@redhat.com>
|
|
|
29b115 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
29b115 |
|
|
|
29b115 |
Bugzilla: https://bugzilla.redhat.com/1939363
|
|
|
29b115 |
|
|
|
29b115 |
Upstream Status: git://git.qemu.org/qemu.git
|
|
|
29b115 |
|
|
|
29b115 |
commit 8170ab3f43989680491d00f1017f60b25d346114
|
|
|
29b115 |
Author: Eugenio Pérez <eperezma@redhat.com>
|
|
|
29b115 |
Date: Wed Jul 20 08:59:44 2022 +0200
|
|
|
29b115 |
|
|
|
29b115 |
vdpa: Extract get features part from vhost_vdpa_get_max_queue_pairs
|
|
|
29b115 |
|
|
|
29b115 |
To know the device features is needed for CVQ SVQ, so SVQ knows if it
|
|
|
29b115 |
can handle all commands or not. Extract from
|
|
|
29b115 |
vhost_vdpa_get_max_queue_pairs so we can reuse it.
|
|
|
29b115 |
|
|
|
29b115 |
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
|
|
29b115 |
Acked-by: Jason Wang <jasowang@redhat.com>
|
|
|
29b115 |
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
29b115 |
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
|
|
29b115 |
|
|
|
29b115 |
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
|
|
29b115 |
---
|
|
|
29b115 |
net/vhost-vdpa.c | 30 ++++++++++++++++++++----------
|
|
|
29b115 |
1 file changed, 20 insertions(+), 10 deletions(-)
|
|
|
29b115 |
|
|
|
29b115 |
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
|
|
|
29b115 |
index df42822463..8b76dac966 100644
|
|
|
29b115 |
--- a/net/vhost-vdpa.c
|
|
|
29b115 |
+++ b/net/vhost-vdpa.c
|
|
|
29b115 |
@@ -474,20 +474,24 @@ static NetClientState *net_vhost_vdpa_init(NetClientState *peer,
|
|
|
29b115 |
return nc;
|
|
|
29b115 |
}
|
|
|
29b115 |
|
|
|
29b115 |
-static int vhost_vdpa_get_max_queue_pairs(int fd, int *has_cvq, Error **errp)
|
|
|
29b115 |
+static int vhost_vdpa_get_features(int fd, uint64_t *features, Error **errp)
|
|
|
29b115 |
+{
|
|
|
29b115 |
+ int ret = ioctl(fd, VHOST_GET_FEATURES, features);
|
|
|
29b115 |
+ if (unlikely(ret < 0)) {
|
|
|
29b115 |
+ error_setg_errno(errp, errno,
|
|
|
29b115 |
+ "Fail to query features from vhost-vDPA device");
|
|
|
29b115 |
+ }
|
|
|
29b115 |
+ return ret;
|
|
|
29b115 |
+}
|
|
|
29b115 |
+
|
|
|
29b115 |
+static int vhost_vdpa_get_max_queue_pairs(int fd, uint64_t features,
|
|
|
29b115 |
+ int *has_cvq, Error **errp)
|
|
|
29b115 |
{
|
|
|
29b115 |
unsigned long config_size = offsetof(struct vhost_vdpa_config, buf);
|
|
|
29b115 |
g_autofree struct vhost_vdpa_config *config = NULL;
|
|
|
29b115 |
__virtio16 *max_queue_pairs;
|
|
|
29b115 |
- uint64_t features;
|
|
|
29b115 |
int ret;
|
|
|
29b115 |
|
|
|
29b115 |
- ret = ioctl(fd, VHOST_GET_FEATURES, &features);
|
|
|
29b115 |
- if (ret) {
|
|
|
29b115 |
- error_setg(errp, "Fail to query features from vhost-vDPA device");
|
|
|
29b115 |
- return ret;
|
|
|
29b115 |
- }
|
|
|
29b115 |
-
|
|
|
29b115 |
if (features & (1 << VIRTIO_NET_F_CTRL_VQ)) {
|
|
|
29b115 |
*has_cvq = 1;
|
|
|
29b115 |
} else {
|
|
|
29b115 |
@@ -517,10 +521,11 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
|
|
|
29b115 |
NetClientState *peer, Error **errp)
|
|
|
29b115 |
{
|
|
|
29b115 |
const NetdevVhostVDPAOptions *opts;
|
|
|
29b115 |
+ uint64_t features;
|
|
|
29b115 |
int vdpa_device_fd;
|
|
|
29b115 |
g_autofree NetClientState **ncs = NULL;
|
|
|
29b115 |
NetClientState *nc;
|
|
|
29b115 |
- int queue_pairs, i, has_cvq = 0;
|
|
|
29b115 |
+ int queue_pairs, r, i, has_cvq = 0;
|
|
|
29b115 |
|
|
|
29b115 |
assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA);
|
|
|
29b115 |
opts = &netdev->u.vhost_vdpa;
|
|
|
29b115 |
@@ -534,7 +539,12 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
|
|
|
29b115 |
return -errno;
|
|
|
29b115 |
}
|
|
|
29b115 |
|
|
|
29b115 |
- queue_pairs = vhost_vdpa_get_max_queue_pairs(vdpa_device_fd,
|
|
|
29b115 |
+ r = vhost_vdpa_get_features(vdpa_device_fd, &features, errp);
|
|
|
29b115 |
+ if (unlikely(r < 0)) {
|
|
|
29b115 |
+ return r;
|
|
|
29b115 |
+ }
|
|
|
29b115 |
+
|
|
|
29b115 |
+ queue_pairs = vhost_vdpa_get_max_queue_pairs(vdpa_device_fd, features,
|
|
|
29b115 |
&has_cvq, errp);
|
|
|
29b115 |
if (queue_pairs < 0) {
|
|
|
29b115 |
qemu_close(vdpa_device_fd);
|
|
|
29b115 |
--
|
|
|
29b115 |
2.31.1
|
|
|
29b115 |
|