mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -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
11
net/tap.c
11
net/tap.c
|
@ -605,6 +605,7 @@ static int net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
|
|||
const char *downscript, const char *vhostfdname,
|
||||
int vnet_hdr, int fd)
|
||||
{
|
||||
Error *err = NULL;
|
||||
TAPState *s;
|
||||
int vhostfd;
|
||||
|
||||
|
@ -643,8 +644,9 @@ static int net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
|
|||
options.force = tap->has_vhostforce && tap->vhostforce;
|
||||
|
||||
if (tap->has_vhostfd || tap->has_vhostfds) {
|
||||
vhostfd = monitor_handle_fd_param(cur_mon, vhostfdname);
|
||||
vhostfd = monitor_fd_param(cur_mon, vhostfdname, &err);
|
||||
if (vhostfd == -1) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
|
@ -704,6 +706,7 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
|
|||
/* for the no-fd, no-helper case */
|
||||
const char *script = NULL; /* suppress wrong "uninit'd use" gcc warning */
|
||||
const char *downscript = NULL;
|
||||
Error *err = NULL;
|
||||
const char *vhostfdname;
|
||||
char ifname[128];
|
||||
|
||||
|
@ -729,8 +732,9 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
|
|||
return -1;
|
||||
}
|
||||
|
||||
fd = monitor_handle_fd_param(cur_mon, tap->fd);
|
||||
fd = monitor_fd_param(cur_mon, tap->fd, &err);
|
||||
if (fd == -1) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -768,8 +772,9 @@ int net_init_tap(const NetClientOptions *opts, const char *name,
|
|||
}
|
||||
|
||||
for (i = 0; i < nfds; i++) {
|
||||
fd = monitor_handle_fd_param(cur_mon, fds[i]);
|
||||
fd = monitor_fd_param(cur_mon, fds[i], &err);
|
||||
if (fd == -1) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue