summaryrefslogtreecommitdiffstats
path: root/contrib/ivshmem-server
diff options
context:
space:
mode:
authorDavid CARLIER2020-07-18 15:20:55 +0200
committerThomas Huth2021-03-20 06:33:17 +0100
commit7e47061d93b4c60abc9c86337744f362c74627f3 (patch)
tree1a5b2a1c2144ca181b2ca542679c795e45bb2c02 /contrib/ivshmem-server
parentconfigure: fix for SunOS based systems (diff)
downloadqemu-7e47061d93b4c60abc9c86337744f362c74627f3.tar.gz
qemu-7e47061d93b4c60abc9c86337744f362c74627f3.tar.xz
qemu-7e47061d93b4c60abc9c86337744f362c74627f3.zip
contrib: ivshmem client and server build fix for SunOS.
sun is a macro on these systems, thus renaming the variables on the client and server. Signed-off-by: David Carlier <devnexen@gmail.com> Message-Id: <CA+XhMqzHPG5ezqY-YxbA+tMoadA3VDFWBX8_LaLC5YsQOMrz+A@mail.gmail.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'contrib/ivshmem-server')
-rw-r--r--contrib/ivshmem-server/ivshmem-server.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/ivshmem-server/ivshmem-server.c b/contrib/ivshmem-server/ivshmem-server.c
index 88daee812d..39a6ffdb5d 100644
--- a/contrib/ivshmem-server/ivshmem-server.c
+++ b/contrib/ivshmem-server/ivshmem-server.c
@@ -288,7 +288,7 @@ ivshmem_server_init(IvshmemServer *server, const char *unix_sock_path,
int
ivshmem_server_start(IvshmemServer *server)
{
- struct sockaddr_un sun;
+ struct sockaddr_un s_un;
int shm_fd, sock_fd, ret;
/* open shm file */
@@ -327,15 +327,15 @@ ivshmem_server_start(IvshmemServer *server)
goto err_close_shm;
}
- sun.sun_family = AF_UNIX;
- ret = snprintf(sun.sun_path, sizeof(sun.sun_path), "%s",
+ s_un.sun_family = AF_UNIX;
+ ret = snprintf(s_un.sun_path, sizeof(s_un.sun_path), "%s",
server->unix_sock_path);
- if (ret < 0 || ret >= sizeof(sun.sun_path)) {
+ if (ret < 0 || ret >= sizeof(s_un.sun_path)) {
IVSHMEM_SERVER_DEBUG(server, "could not copy unix socket path\n");
goto err_close_sock;
}
- if (bind(sock_fd, (struct sockaddr *)&sun, sizeof(sun)) < 0) {
- IVSHMEM_SERVER_DEBUG(server, "cannot connect to %s: %s\n", sun.sun_path,
+ if (bind(sock_fd, (struct sockaddr *)&s_un, sizeof(s_un)) < 0) {
+ IVSHMEM_SERVER_DEBUG(server, "cannot connect to %s: %s\n", s_un.sun_path,
strerror(errno));
goto err_close_sock;
}