aboutsummaryrefslogtreecommitdiffstats
path: root/vhost_user_loopback.c
diff options
context:
space:
mode:
authorTimos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>2022-11-25 15:56:03 +0100
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-03 15:18:54 +0300
commitfc33f9b651babf991fc39306764e3d6d7b68143b (patch)
tree2fb5234cba0eb690ed7a824fbd39ec927025490c /vhost_user_loopback.c
parente6d6621bced8b62dc9f98a09870b527535cbb158 (diff)
Update virtio-loopback-adapter Beta version:
- Add exclusive eventfd for notifications - Update eventfd handler for vhost-user call Signed-off-by: Timos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>
Diffstat (limited to 'vhost_user_loopback.c')
-rw-r--r--vhost_user_loopback.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/vhost_user_loopback.c b/vhost_user_loopback.c
index 8ea366f..91e2efb 100644
--- a/vhost_user_loopback.c
+++ b/vhost_user_loopback.c
@@ -465,7 +465,15 @@ void vhost_user_share_fd(void)
* msg.flags &= ~VHOST_USER_NEED_REPLY_MASK;
*/
- (void)vu_message_write(client_sock, &msg);
+ if (vu_message_write(client_sock, &msg) < 0) {
+ DBG("vhost_user_share_fd -> write failed\n");
+ exit(1);
+ }
+
+ if (msg.flags & VHOST_USER_NEED_REPLY_MASK) {
+ process_message_reply(&msg);
+ }
+
}
int vhost_set_vring_file(VhostUserRequest request,