diff options
author | 2023-12-15 15:48:09 +0000 | |
---|---|---|
committer | 2023-12-18 08:37:14 +0000 | |
commit | 330a49da9ec426bd07472266916366053281b4de (patch) | |
tree | 1bfa402a5ba5396b0a1f6b6f6b211d1ed913125e /vhost_user_sound.c | |
parent | 274aa4832d16af5a6b10ffe6021b278bffca4eb8 (diff) |
Adding virtio-console support and small sound fixes
This commit adds adapter support for vhost-user-console
Bug-AGL: SPEC-4834
Change-Id: I96eb95ffbf858b0ad410f49e586af0bb81b74dd2
Signed-off-by: Michele Paolino <m.paolino@virtualopensystems.com>
Diffstat (limited to 'vhost_user_sound.c')
-rw-r--r-- | vhost_user_sound.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vhost_user_sound.c b/vhost_user_sound.c index 1e4c5cf..c444feb 100644 --- a/vhost_user_sound.c +++ b/vhost_user_sound.c @@ -91,6 +91,9 @@ static void vus_start(VirtIODevice *vdev) goto err_guest_notifiers; } + /* Wait a bit before the vrings be set in vhost-user-device */ + sleep(1); + /* * guest_notifier_mask/pending not used yet, so just unmask * everything here. virtio-pci will do the right thing by |