[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 6/7] qmp: add shmem feature map
From: |
Albert Esteve |
Subject: |
[PATCH v5 6/7] qmp: add shmem feature map |
Date: |
Mon, 9 Jun 2025 16:47:28 +0200 |
Add new vhost-user protocol
VHOST_USER_PROTOCOL_F_SHMEM feature to
feature map.
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Albert Esteve <aesteve@redhat.com>
---
hw/virtio/virtio-qmp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/virtio/virtio-qmp.c b/hw/virtio/virtio-qmp.c
index 3b6377cf0d..8c2cfd0916 100644
--- a/hw/virtio/virtio-qmp.c
+++ b/hw/virtio/virtio-qmp.c
@@ -127,6 +127,9 @@ static const qmp_virtio_feature_map_t
vhost_user_protocol_map[] = {
FEATURE_ENTRY(VHOST_USER_PROTOCOL_F_DEVICE_STATE, \
"VHOST_USER_PROTOCOL_F_DEVICE_STATE: Backend device state transfer
"
"supported"),
+ FEATURE_ENTRY(VHOST_USER_PROTOCOL_F_SHMEM, \
+ "VHOST_USER_PROTOCOL_F_SHMEM: Backend shared memory mapping "
+ "supported"),
{ -1, "" }
};
--
2.49.0
- [PATCH v5 0/7] vhost-user: Add SHMEM_MAP/UNMAP requests, Albert Esteve, 2025/06/09
- [PATCH v5 1/7] vhost-user: Add VirtIO Shared Memory map request, Albert Esteve, 2025/06/09
- [PATCH v5 2/7] vhost_user.rst: Align VhostUserMsg excerpt members, Albert Esteve, 2025/06/09
- [PATCH v5 3/7] vhost_user.rst: Add SHMEM_MAP/_UNMAP to spec, Albert Esteve, 2025/06/09
- [PATCH v5 4/7] vhost_user: Add frontend get_shmem_config command, Albert Esteve, 2025/06/09
- [PATCH v5 6/7] qmp: add shmem feature map,
Albert Esteve <=
- [PATCH v5 5/7] vhost_user.rst: Add GET_SHMEM_CONFIG message, Albert Esteve, 2025/06/09
- [PATCH v5 7/7] vhost-user-devive: Add shmem BAR, Albert Esteve, 2025/06/09