summary refs log tree commit diff stats
path: root/hw/remote/mpqemu-link.c
diff options
context:
space:
mode:
authorFabiano Rosas <farosas@suse.de>2025-02-07 10:46:17 -0300
committerFabiano Rosas <farosas@suse.de>2025-02-14 15:19:04 -0300
commita25b013019672ab456ef8b51912eadcdda418b73 (patch)
tree3d9207c158ea1ec9d917891caf30f875880676e0 /hw/remote/mpqemu-link.c
parent0b8a70d70f65fbcf3ad62c975a64a356779095a9 (diff)
downloadfocaccia-qemu-a25b013019672ab456ef8b51912eadcdda418b73.tar.gz
focaccia-qemu-a25b013019672ab456ef8b51912eadcdda418b73.zip
io: Add flags argument to qio_channel_readv_full_all_eof
We want to pass flags into qio_channel_tls_readv() but
qio_channel_readv_full_all_eof() doesn't take a flags argument.

No functional change.

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Acked-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Diffstat (limited to 'hw/remote/mpqemu-link.c')
-rw-r--r--hw/remote/mpqemu-link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/remote/mpqemu-link.c b/hw/remote/mpqemu-link.c
index e25f97680d..49885a1db6 100644
--- a/hw/remote/mpqemu-link.c
+++ b/hw/remote/mpqemu-link.c
@@ -110,7 +110,7 @@ static ssize_t mpqemu_read(QIOChannel *ioc, void *buf, size_t len, int **fds,
         bql_unlock();
     }
 
-    ret = qio_channel_readv_full_all_eof(ioc, &iov, 1, fds, nfds, errp);
+    ret = qio_channel_readv_full_all_eof(ioc, &iov, 1, fds, nfds, 0, errp);
 
     if (drop_bql && !iothread && !qemu_in_coroutine()) {
         bql_lock();