提交 235256a2 编写于 作者: M Markus Armbruster 提交者: Luiz Capitulino

qemu-socket: Eliminate silly QERR_ macros

The QERR_ macros are leftovers from the days of "rich" error objects.
They're used with error_set() and qerror_report(), and expand into the
first *two* arguments.  This trickiness has become pointless.  Clean
up.
Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Reviewed-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
上级 dbe2a7a6
...@@ -154,16 +154,4 @@ void qerror_report_err(Error *err); ...@@ -154,16 +154,4 @@ void qerror_report_err(Error *err);
#define QERR_UNSUPPORTED \ #define QERR_UNSUPPORTED \
ERROR_CLASS_GENERIC_ERROR, "this feature or command is not currently supported" ERROR_CLASS_GENERIC_ERROR, "this feature or command is not currently supported"
#define QERR_SOCKET_CONNECT_FAILED \
ERROR_CLASS_GENERIC_ERROR, "Failed to connect socket"
#define QERR_SOCKET_LISTEN_FAILED \
ERROR_CLASS_GENERIC_ERROR, "Failed to listen on socket"
#define QERR_SOCKET_BIND_FAILED \
ERROR_CLASS_GENERIC_ERROR, "Failed to bind socket"
#define QERR_SOCKET_CREATE_FAILED \
ERROR_CLASS_GENERIC_ERROR, "Failed to create socket"
#endif /* QERROR_H */ #endif /* QERROR_H */
...@@ -159,7 +159,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp) ...@@ -159,7 +159,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp)
slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol); slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol);
if (slisten < 0) { if (slisten < 0) {
if (!e->ai_next) { if (!e->ai_next) {
error_set_errno(errp, errno, QERR_SOCKET_CREATE_FAILED); error_setg_errno(errp, errno, "Failed to create socket");
} }
continue; continue;
} }
...@@ -183,7 +183,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp) ...@@ -183,7 +183,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp)
} }
if (p == port_max) { if (p == port_max) {
if (!e->ai_next) { if (!e->ai_next) {
error_set_errno(errp, errno, QERR_SOCKET_BIND_FAILED); error_setg_errno(errp, errno, "Failed to bind socket");
} }
} }
} }
...@@ -194,7 +194,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp) ...@@ -194,7 +194,7 @@ int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp)
listen: listen:
if (listen(slisten,1) != 0) { if (listen(slisten,1) != 0) {
error_set_errno(errp, errno, QERR_SOCKET_LISTEN_FAILED); error_setg_errno(errp, errno, "Failed to listen on socket");
closesocket(slisten); closesocket(slisten);
freeaddrinfo(res); freeaddrinfo(res);
return -1; return -1;
...@@ -281,7 +281,7 @@ static int inet_connect_addr(struct addrinfo *addr, bool *in_progress, ...@@ -281,7 +281,7 @@ static int inet_connect_addr(struct addrinfo *addr, bool *in_progress,
sock = qemu_socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol); sock = qemu_socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol);
if (sock < 0) { if (sock < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CREATE_FAILED); error_setg_errno(errp, errno, "Failed to create socket");
return -1; return -1;
} }
socket_set_fast_reuse(sock); socket_set_fast_reuse(sock);
...@@ -302,7 +302,7 @@ static int inet_connect_addr(struct addrinfo *addr, bool *in_progress, ...@@ -302,7 +302,7 @@ static int inet_connect_addr(struct addrinfo *addr, bool *in_progress,
connect_state); connect_state);
*in_progress = true; *in_progress = true;
} else if (rc < 0) { } else if (rc < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CONNECT_FAILED); error_setg_errno(errp, errno, "Failed to connect socket");
closesocket(sock); closesocket(sock);
return -1; return -1;
} }
...@@ -466,20 +466,20 @@ int inet_dgram_opts(QemuOpts *opts, Error **errp) ...@@ -466,20 +466,20 @@ int inet_dgram_opts(QemuOpts *opts, Error **errp)
/* create socket */ /* create socket */
sock = qemu_socket(peer->ai_family, peer->ai_socktype, peer->ai_protocol); sock = qemu_socket(peer->ai_family, peer->ai_socktype, peer->ai_protocol);
if (sock < 0) { if (sock < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CREATE_FAILED); error_setg_errno(errp, errno, "Failed to create socket");
goto err; goto err;
} }
socket_set_fast_reuse(sock); socket_set_fast_reuse(sock);
/* bind socket */ /* bind socket */
if (bind(sock, local->ai_addr, local->ai_addrlen) < 0) { if (bind(sock, local->ai_addr, local->ai_addrlen) < 0) {
error_set_errno(errp, errno, QERR_SOCKET_BIND_FAILED); error_setg_errno(errp, errno, "Failed to bind socket");
goto err; goto err;
} }
/* connect to peer */ /* connect to peer */
if (connect(sock,peer->ai_addr,peer->ai_addrlen) < 0) { if (connect(sock,peer->ai_addr,peer->ai_addrlen) < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CONNECT_FAILED); error_setg_errno(errp, errno, "Failed to connect socket");
goto err; goto err;
} }
...@@ -684,7 +684,7 @@ int unix_listen_opts(QemuOpts *opts, Error **errp) ...@@ -684,7 +684,7 @@ int unix_listen_opts(QemuOpts *opts, Error **errp)
sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0); sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0);
if (sock < 0) { if (sock < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CREATE_FAILED); error_setg_errno(errp, errno, "Failed to create socket");
return -1; return -1;
} }
...@@ -709,11 +709,11 @@ int unix_listen_opts(QemuOpts *opts, Error **errp) ...@@ -709,11 +709,11 @@ int unix_listen_opts(QemuOpts *opts, Error **errp)
unlink(un.sun_path); unlink(un.sun_path);
if (bind(sock, (struct sockaddr*) &un, sizeof(un)) < 0) { if (bind(sock, (struct sockaddr*) &un, sizeof(un)) < 0) {
error_set_errno(errp, errno, QERR_SOCKET_BIND_FAILED); error_setg_errno(errp, errno, "Failed to bind socket");
goto err; goto err;
} }
if (listen(sock, 1) < 0) { if (listen(sock, 1) < 0) {
error_set_errno(errp, errno, QERR_SOCKET_LISTEN_FAILED); error_setg_errno(errp, errno, "Failed to listen on socket");
goto err; goto err;
} }
...@@ -739,7 +739,7 @@ int unix_connect_opts(QemuOpts *opts, Error **errp, ...@@ -739,7 +739,7 @@ int unix_connect_opts(QemuOpts *opts, Error **errp,
sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0); sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0);
if (sock < 0) { if (sock < 0) {
error_set_errno(errp, errno, QERR_SOCKET_CREATE_FAILED); error_setg_errno(errp, errno, "Failed to create socket");
return -1; return -1;
} }
if (callback != NULL) { if (callback != NULL) {
...@@ -774,7 +774,7 @@ int unix_connect_opts(QemuOpts *opts, Error **errp, ...@@ -774,7 +774,7 @@ int unix_connect_opts(QemuOpts *opts, Error **errp,
} }
if (rc < 0) { if (rc < 0) {
error_set_errno(errp, -rc, QERR_SOCKET_CONNECT_FAILED); error_setg_errno(errp, -rc, "Failed to connect socket");
close(sock); close(sock);
sock = -1; sock = -1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册