error: Convert net_client_init() to QError

The conversion is shallow: client type init() methods aren't
converted.  Converting them is a big job for relatively little
practical benefit, so leave it for later.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
Markus Armbruster 2010-03-25 17:22:38 +01:00 committed by Aurelien Jarno
parent db716e9c16
commit 5294e2c774

38
net.c
View file

@ -1065,18 +1065,12 @@ int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
int i; int i;
type = qemu_opt_get(opts, "type"); type = qemu_opt_get(opts, "type");
if (!type) {
qerror_report(QERR_MISSING_PARAMETER, "type");
return -1;
}
if (!is_netdev) { if (is_netdev) {
if (!type) {
error_report("No type specified for -net");
return -1;
}
} else {
if (!type) {
error_report("No type specified for -netdev");
return -1;
}
if (strcmp(type, "tap") != 0 && if (strcmp(type, "tap") != 0 &&
#ifdef CONFIG_SLIRP #ifdef CONFIG_SLIRP
strcmp(type, "user") != 0 && strcmp(type, "user") != 0 &&
@ -1085,21 +1079,21 @@ int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
strcmp(type, "vde") != 0 && strcmp(type, "vde") != 0 &&
#endif #endif
strcmp(type, "socket") != 0) { strcmp(type, "socket") != 0) {
error_report("The '%s' network backend type is not valid with -netdev", qerror_report(QERR_INVALID_PARAMETER_VALUE, "type",
type); "a netdev backend type");
return -1; return -1;
} }
if (qemu_opt_get(opts, "vlan")) { if (qemu_opt_get(opts, "vlan")) {
error_report("The 'vlan' parameter is not valid with -netdev"); qerror_report(QERR_INVALID_PARAMETER, "vlan");
return -1; return -1;
} }
if (qemu_opt_get(opts, "name")) { if (qemu_opt_get(opts, "name")) {
error_report("The 'name' parameter is not valid with -netdev"); qerror_report(QERR_INVALID_PARAMETER, "name");
return -1; return -1;
} }
if (!qemu_opts_id(opts)) { if (!qemu_opts_id(opts)) {
error_report("The id= parameter is required with -netdev"); qerror_report(QERR_MISSING_PARAMETER, "id");
return -1; return -1;
} }
} }
@ -1125,14 +1119,18 @@ int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
} }
if (net_client_types[i].init) { if (net_client_types[i].init) {
return net_client_types[i].init(opts, mon, name, vlan); if (net_client_types[i].init(opts, mon, name, vlan) < 0) {
} else { /* TODO push error reporting into init() methods */
return 0; qerror_report(QERR_DEVICE_INIT_FAILED, type);
return -1;
}
} }
return 0;
} }
} }
error_report("Invalid -net type '%s'", type); qerror_report(QERR_INVALID_PARAMETER_VALUE, "type",
"a network client type");
return -1; return -1;
} }