From a99fe32fc076f0654a8c8fab7a16abff42ba4218 Mon Sep 17 00:00:00 2001 From: Timos Ampelikiotis Date: Wed, 13 Sep 2023 15:22:26 +0000 Subject: Introduce Virtio-loopback epsilon-release: Epsilon release introduces a new compatibility layer which make virtio-loopback design to work with QEMU and rust-vmm vhost-user backend without require any changes. Changes and fixes done during this development are: - Add new memory exchange mechanism - Update binaries command line: argument limit - Update features exchange for vhost-user-rng backend - Updare VQS index exchange process between driver and adapter - Add VHOST_RAM_SLOTS constant Signed-off-by: Timos Ampelikiotis --- vhost_user_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vhost_user_input.c') diff --git a/vhost_user_input.c b/vhost_user_input.c index e33d22c..d6764cc 100644 --- a/vhost_user_input.c +++ b/vhost_user_input.c @@ -208,7 +208,7 @@ void vhost_user_backend_start(VirtIODevice *vdev) } vdev->vhuinput->vhost_dev->acked_features = vdev->guest_features; - ret = vhost_dev_start(vdev->vhuinput->vhost_dev, vdev); + ret = vhost_dev_start(vdev->vhuinput->vhost_dev, vdev, false); if (ret < 0) { DBG("Error start vhost dev\n"); return; -- cgit 1.2.3-korg