[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 08/60] hw/virtio: Support set_config() callback in vhost-user-base
From: |
Michael S. Tsirkin |
Subject: |
[PULL 08/60] hw/virtio: Support set_config() callback in vhost-user-base |
Date: |
Wed, 14 Feb 2024 06:13:37 -0500 |
From: Leo Yan <leo.yan@linaro.org>
The Virtio input device invokes set_config() callback for retrieving
the event configuration info, but the callback is not supported in
vhost-user-base.
This patch adds support set_config() callback in vhost-user-base.
Signed-off-by: Leo Yan <leo.yan@linaro.org>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20231120043721.50555-2-leo.yan@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240104210945.1223134-9-alex.bennee@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/virtio/vhost-user-base.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/hw/virtio/vhost-user-base.c b/hw/virtio/vhost-user-base.c
index 78cfa9a5bb..a83167191e 100644
--- a/hw/virtio/vhost-user-base.c
+++ b/hw/virtio/vhost-user-base.c
@@ -140,6 +140,22 @@ static void vub_get_config(VirtIODevice *vdev, uint8_t
*config)
}
}
+static void vub_set_config(VirtIODevice *vdev, const uint8_t *config_data)
+{
+ VHostUserBase *vub = VHOST_USER_BASE(vdev);
+ int ret;
+
+ g_assert(vub->config_size && vub->vhost_user.supports_config == true);
+
+ ret = vhost_dev_set_config(&vub->vhost_dev, config_data,
+ 0, vub->config_size,
+ VHOST_SET_CONFIG_TYPE_FRONTEND);
+ if (ret) {
+ error_report("vhost guest set device config space failed: %d", ret);
+ return;
+ }
+}
+
/*
* When the daemon signals an update to the config we just need to
* signal the guest as we re-read the config on demand above.
@@ -337,6 +353,7 @@ static void vub_class_init(ObjectClass *klass, void *data)
vdc->unrealize = vub_device_unrealize;
vdc->get_features = vub_get_features;
vdc->get_config = vub_get_config;
+ vdc->set_config = vub_set_config;
vdc->set_status = vub_set_status;
}
--
MST
- [PULL 00/60] virtio,pc,pci: features, cleanups, fixes, Michael S. Tsirkin, 2024/02/14
- [PULL 02/60] hw/virtio: convert vhost-user-base to async shutdown, Michael S. Tsirkin, 2024/02/14
- [PULL 01/60] virtio: split into vhost-user-base and vhost-user-device, Michael S. Tsirkin, 2024/02/14
- [PULL 03/60] hw/virtio: derive vhost-user-rng from vhost-user-base, Michael S. Tsirkin, 2024/02/14
- [PULL 07/60] docs/system: add a basic enumeration of vhost-user devices, Michael S. Tsirkin, 2024/02/14
- [PULL 09/60] docs/system: Add vhost-user-input documentation, Michael S. Tsirkin, 2024/02/14
- [PULL 05/60] hw/virtio: derive vhost-user-i2c from vhost-user-base, Michael S. Tsirkin, 2024/02/14
- [PULL 08/60] hw/virtio: Support set_config() callback in vhost-user-base,
Michael S. Tsirkin <=
- [PULL 06/60] hw/virtio: add vhost-user-snd and vhost-user-snd-pci devices, Michael S. Tsirkin, 2024/02/14
- [PULL 10/60] hw/virtio: Move vhost-user-input into virtio folder, Michael S. Tsirkin, 2024/02/14
- [PULL 04/60] hw/virtio: derive vhost-user-gpio from vhost-user-base, Michael S. Tsirkin, 2024/02/14
- [PULL 12/60] i386/tcg: implement x2APIC registers MSR access, Michael S. Tsirkin, 2024/02/14
- [PULL 14/60] apic, i386/tcg: add x2apic transitions, Michael S. Tsirkin, 2024/02/14
- [PULL 13/60] apic: add support for x2APIC mode, Michael S. Tsirkin, 2024/02/14
- [PULL 15/60] intel_iommu: allow Extended Interrupt Mode when using userspace APIC, Michael S. Tsirkin, 2024/02/14
- [PULL 16/60] test: bios-tables-test: prepare IVRS change in ACPI table, Michael S. Tsirkin, 2024/02/14
- [PULL 11/60] hw/virtio: derive vhost-user-input from vhost-user-base, Michael S. Tsirkin, 2024/02/14
- [PULL 17/60] amd_iommu: report x2APIC support to the operating system, Michael S. Tsirkin, 2024/02/14