mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
monitor: Clean up around monitor_handle_fd_param()
monitor_handle_fd_param() is a wrapper around monitor_handle_fd_param2() that feeds errors to qerror_report_err() instead of returning them. qerror_report_err() is inappropriate in many contexts. monitor_handle_fd_param() looks simpler than monitor_handle_fd_param2(), which tempts use. Remove the temptation: drop the wrapper and open-code the (trivial) error handling instead. Replace the open-coded qerror_report_err() by error_report_err() in places that already use error_report(). Turns out that's everywhere. While there, rename monitor_handle_fd_param2() to monitor_fd_param(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
565f65d271
commit
1677f4c66c
6 changed files with 16 additions and 24 deletions
|
@ -695,6 +695,7 @@ static int net_socket_udp_init(NetClientState *peer,
|
|||
int net_init_socket(const NetClientOptions *opts, const char *name,
|
||||
NetClientState *peer)
|
||||
{
|
||||
Error *err = NULL;
|
||||
const NetdevSocketOptions *sock;
|
||||
|
||||
assert(opts->kind == NET_CLIENT_OPTIONS_KIND_SOCKET);
|
||||
|
@ -715,8 +716,9 @@ int net_init_socket(const NetClientOptions *opts, const char *name,
|
|||
if (sock->has_fd) {
|
||||
int fd;
|
||||
|
||||
fd = monitor_handle_fd_param(cur_mon, sock->fd);
|
||||
fd = monitor_fd_param(cur_mon, sock->fd, &err);
|
||||
if (fd == -1) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
qemu_set_nonblock(fd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue