diff options
author | Marc-André Lureau | 2022-04-25 15:33:47 +0200 |
---|---|---|
committer | Marc-André Lureau | 2022-05-03 13:53:20 +0200 |
commit | ff5927baa7ffb9c97873a071f6a8d85a3584182b (patch) | |
tree | fac232e795ec7f76ad8ca15a59a7d8b908e7a225 /util/vhost-user-server.c | |
parent | tests: replace qemu_set_nonblock() (diff) | |
download | qemu-ff5927baa7ffb9c97873a071f6a8d85a3584182b.tar.gz qemu-ff5927baa7ffb9c97873a071f6a8d85a3584182b.tar.xz qemu-ff5927baa7ffb9c97873a071f6a8d85a3584182b.zip |
util: rename qemu_*block() socket functions
The qemu_*block() functions are meant to be be used with sockets (the
win32 implementation expects SOCKET)
Over time, those functions where used with Win32 SOCKET or
file-descriptors interchangeably. But for portability, they must only be
used with socket-like file-descriptors. FDs can use
g_unix_set_fd_nonblocking() instead.
Rename the functions with "socket" in the name to prevent bad usages.
This is effectively reverting commit f9e8cacc5557e43 ("oslib-posix:
rename socket_set_nonblock() to qemu_set_nonblock()").
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'util/vhost-user-server.c')
-rw-r--r-- | util/vhost-user-server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/vhost-user-server.c b/util/vhost-user-server.c index f66fbba710..232984ace6 100644 --- a/util/vhost-user-server.c +++ b/util/vhost-user-server.c @@ -65,7 +65,7 @@ static void vmsg_unblock_fds(VhostUserMsg *vmsg) { int i; for (i = 0; i < vmsg->fd_num; i++) { - qemu_set_nonblock(vmsg->fds[i]); + qemu_socket_set_nonblock(vmsg->fds[i]); } } @@ -270,7 +270,7 @@ set_watch(VuDev *vu_dev, int fd, int vu_evt, vu_fd_watch->fd = fd; vu_fd_watch->cb = cb; - qemu_set_nonblock(fd); + qemu_socket_set_nonblock(fd); aio_set_fd_handler(server->ioc->ctx, fd, true, kick_handler, NULL, NULL, NULL, vu_fd_watch); vu_fd_watch->vu_dev = vu_dev; |