79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
104 lines
3.9 KiB
Diff
104 lines
3.9 KiB
Diff
From fdb55acf1833e6a35171b4e7e1c357f4b133e26f Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
|
Date: Tue, 6 Sep 2022 17:07:14 +0200
|
|
Subject: [PATCH] vdpa: Make VhostVDPAState cvq_cmd_in_buffer control ack type
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This allows to simplify the code. Rename to status while we're at it.
|
|
|
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
|
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
|
Signed-off-by: fangyi <eric.fangyi@huawei.com>
|
|
---
|
|
net/vhost-vdpa.c | 23 ++++++++++++-----------
|
|
1 file changed, 12 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
|
|
index b10a18aeb4..2700ef656f 100644
|
|
--- a/net/vhost-vdpa.c
|
|
+++ b/net/vhost-vdpa.c
|
|
@@ -34,7 +34,9 @@ typedef struct VhostVDPAState {
|
|
VHostNetState *vhost_net;
|
|
|
|
/* Control commands shadow buffers */
|
|
- void *cvq_cmd_out_buffer, *cvq_cmd_in_buffer;
|
|
+ void *cvq_cmd_out_buffer;
|
|
+ virtio_net_ctrl_ack *status;
|
|
+
|
|
bool started;
|
|
} VhostVDPAState;
|
|
|
|
@@ -166,7 +168,7 @@ static void vhost_vdpa_cleanup(NetClientState *nc)
|
|
}
|
|
|
|
qemu_vfree(s->cvq_cmd_out_buffer);
|
|
- qemu_vfree(s->cvq_cmd_in_buffer);
|
|
+ qemu_vfree(s->status);
|
|
if (dev->vq_index + dev->nvqs == dev->vq_index_end) {
|
|
g_clear_pointer(&s->vhost_vdpa.iova_tree, vhost_iova_tree_delete);
|
|
}
|
|
@@ -318,7 +320,7 @@ static int vhost_vdpa_net_cvq_start(NetClientState *nc)
|
|
return r;
|
|
}
|
|
|
|
- r = vhost_vdpa_cvq_map_buf(&s->vhost_vdpa, s->cvq_cmd_in_buffer,
|
|
+ r = vhost_vdpa_cvq_map_buf(&s->vhost_vdpa, s->status,
|
|
vhost_vdpa_net_cvq_cmd_page_len(), true);
|
|
if (unlikely(r < 0)) {
|
|
vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->cvq_cmd_out_buffer);
|
|
@@ -335,7 +337,7 @@ static void vhost_vdpa_net_cvq_stop(NetClientState *nc)
|
|
|
|
if (s->vhost_vdpa.shadow_vqs_enabled) {
|
|
vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->cvq_cmd_out_buffer);
|
|
- vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->cvq_cmd_in_buffer);
|
|
+ vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->status);
|
|
}
|
|
}
|
|
|
|
@@ -348,7 +350,7 @@ static ssize_t vhost_vdpa_net_cvq_add(VhostVDPAState *s, size_t out_len,
|
|
.iov_len = out_len,
|
|
};
|
|
const struct iovec in = {
|
|
- .iov_base = s->cvq_cmd_in_buffer,
|
|
+ .iov_base = s->status,
|
|
.iov_len = sizeof(virtio_net_ctrl_ack),
|
|
};
|
|
VhostShadowVirtqueue *svq = g_ptr_array_index(s->vhost_vdpa.shadow_vqs, 0);
|
|
@@ -404,7 +406,7 @@ static int vhost_vdpa_net_load(NetClientState *nc)
|
|
return dev_written;
|
|
}
|
|
|
|
- return *((virtio_net_ctrl_ack *)s->cvq_cmd_in_buffer) != VIRTIO_NET_OK;
|
|
+ return *s->status != VIRTIO_NET_OK;
|
|
}
|
|
|
|
return 0;
|
|
@@ -499,8 +501,7 @@ static int vhost_vdpa_net_handle_ctrl_avail(VhostShadowVirtqueue *svq,
|
|
goto out;
|
|
}
|
|
|
|
- memcpy(&status, s->cvq_cmd_in_buffer, sizeof(status));
|
|
- if (status != VIRTIO_NET_OK) {
|
|
+ if (*s->status != VIRTIO_NET_OK) {
|
|
return VIRTIO_NET_ERR;
|
|
}
|
|
|
|
@@ -557,9 +558,9 @@ static NetClientState *net_vhost_vdpa_init(NetClientState *peer,
|
|
s->cvq_cmd_out_buffer = qemu_memalign(qemu_real_host_page_size,
|
|
vhost_vdpa_net_cvq_cmd_page_len());
|
|
memset(s->cvq_cmd_out_buffer, 0, vhost_vdpa_net_cvq_cmd_page_len());
|
|
- s->cvq_cmd_in_buffer = qemu_memalign(qemu_real_host_page_size,
|
|
- vhost_vdpa_net_cvq_cmd_page_len());
|
|
- memset(s->cvq_cmd_in_buffer, 0, vhost_vdpa_net_cvq_cmd_page_len());
|
|
+ s->status = qemu_memalign(qemu_real_host_page_size,
|
|
+ vhost_vdpa_net_cvq_cmd_page_len());
|
|
+ memset(s->status, 0, vhost_vdpa_net_cvq_cmd_page_len());
|
|
|
|
s->vhost_vdpa.shadow_vq_ops = &vhost_vdpa_net_svq_ops;
|
|
s->vhost_vdpa.shadow_vq_ops_opaque = s;
|
|
--
|
|
2.27.0
|
|
|