[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 4/7] tests/qtest/libqos/virtio-blk: add support for vhost-user
From: |
Dima Stepanov |
Subject: |
[PATCH v2 4/7] tests/qtest/libqos/virtio-blk: add support for vhost-user-blk |
Date: |
Mon, 24 Aug 2020 11:39:29 +0300 |
Add support for the vhost-user-blk-pci device. This node can be used by
the vhost-user-blk tests. Tests for the vhost-user-blk device are added
in the following patches.
Signed-off-by: Dima Stepanov <dimastep@yandex-team.ru>
---
tests/qtest/libqos/virtio-blk.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/tests/qtest/libqos/virtio-blk.c b/tests/qtest/libqos/virtio-blk.c
index 5da0259..959c5dc 100644
--- a/tests/qtest/libqos/virtio-blk.c
+++ b/tests/qtest/libqos/virtio-blk.c
@@ -36,6 +36,9 @@ static void *qvirtio_blk_get_driver(QVirtioBlk *v_blk,
if (!g_strcmp0(interface, "virtio")) {
return v_blk->vdev;
}
+ if (!g_strcmp0(interface, "vhost-user-blk")) {
+ return v_blk;
+ }
fprintf(stderr, "%s not present in virtio-blk-device\n", interface);
g_assert_not_reached();
@@ -120,6 +123,17 @@ static void virtio_blk_register_nodes(void)
qos_node_produces("virtio-blk-pci", "virtio-blk");
g_free(arg);
+
+ /* vhost-user-blk-pci */
+ arg = g_strdup_printf("id=drv0,chardev=chdev0,addr=%x.%x",
+ PCI_SLOT, PCI_FN);
+ opts.extra_device_opts = arg;
+ add_qpci_address(&opts, &addr);
+ qos_node_create_driver("vhost-user-blk-pci", virtio_blk_pci_create);
+ qos_node_consumes("vhost-user-blk-pci", "pci-bus", &opts);
+ qos_node_produces("vhost-user-blk-pci", "vhost-user-blk");
+
+ g_free(arg);
}
libqos_init(virtio_blk_register_nodes);
--
2.7.4
- [PATCH v2 0/7] vhost-user-blk: fix the migration issue and enhance qtests, Dima Stepanov, 2020/08/24
- [PATCH v2 1/7] vhost: recheck dev state in the vhost_migration_log routine, Dima Stepanov, 2020/08/24
- [PATCH v2 2/7] vhost: check queue state in the vhost_dev_set_log routine, Dima Stepanov, 2020/08/24
- [PATCH v2 3/7] tests/qtest/vhost-user-test: prepare the tests for adding new dev class, Dima Stepanov, 2020/08/24
- [PATCH v2 4/7] tests/qtest/libqos/virtio-blk: add support for vhost-user-blk,
Dima Stepanov <=
- [PATCH v2 5/7] tests/qtest/vhost-user-test: add support for the vhost-user-blk device, Dima Stepanov, 2020/08/24
- [PATCH v2 6/7] tests/qtest/vhost-user-test: add migrate_reconnect test, Dima Stepanov, 2020/08/24
- [PATCH v2 7/7] tests/qtest/vhost-user-test: enable the reconnect tests, Dima Stepanov, 2020/08/24
- Re: [PATCH v2 0/7] vhost-user-blk: fix the migration issue and enhance qtests, no-reply, 2020/08/24