diff mbox series

[v2,2/2] tools/virtio: Add hints when module is not installed

Message ID 20231007065547.1028-2-liming.wu@jaguarmicro.com (mailing list archive)
State Superseded
Headers show
Series [v2,1/2] tools/virtio: Add dma sync api for virtio test | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Liming Wu Oct. 7, 2023, 6:55 a.m. UTC
From: Liming Wu <liming.wu@jaguarmicro.com>

Need to insmod vhost_test.ko before run virtio_test.
Give some hints to users.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 tools/virtio/virtio_test.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
index 028f54e6854a..13572a677c35 100644
--- a/tools/virtio/virtio_test.c
+++ b/tools/virtio/virtio_test.c
@@ -135,6 +135,10 @@  static void vdev_info_init(struct vdev_info* dev, unsigned long long features)
 	dev->buf = malloc(dev->buf_size);
 	assert(dev->buf);
 	dev->control = open("/dev/vhost-test", O_RDWR);
+
+	if (dev->control < 0)
+		fprintf(stderr,
+			"Install vhost_test module (/vhost_test/vhost_test.ko) first.\n");
 	assert(dev->control >= 0);
 	r = ioctl(dev->control, VHOST_SET_OWNER, NULL);
 	assert(r >= 0);