mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
usb: Improve companion configuration error messages
The previous commit broke the additional messages explaining the error messages. Improve the error messages, so they don't need explaining so much. Helps QMP users as well, unlike additional explanations. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
f4bbaaf584
commit
2e269f3d9d
2 changed files with 14 additions and 25 deletions
|
@ -777,26 +777,17 @@ static void ehci_register_companion(USBBus *bus, USBPort *ports[],
|
|||
uint32_t i;
|
||||
|
||||
if (firstport + portcount > NB_PORTS) {
|
||||
error_set(errp, QERR_INVALID_PARAMETER_VALUE, "firstport",
|
||||
"firstport on masterbus");
|
||||
#if 0 /* conversion from qerror_report() to error_set() broke this: */
|
||||
error_printf_unless_qmp(
|
||||
"firstport value of %u makes companion take ports %u - %u, which "
|
||||
"is outside of the valid range of 0 - %u\n", firstport, firstport,
|
||||
firstport + portcount - 1, NB_PORTS - 1);
|
||||
#endif
|
||||
error_setg(errp, "firstport must be between 0 and %u",
|
||||
NB_PORTS - portcount);
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < portcount; i++) {
|
||||
if (s->companion_ports[firstport + i]) {
|
||||
error_set(errp, QERR_INVALID_PARAMETER_VALUE, "masterbus",
|
||||
"an USB masterbus");
|
||||
#if 0 /* conversion from qerror_report() to error_set() broke this: */
|
||||
error_printf_unless_qmp(
|
||||
"port %u on masterbus %s already has a companion assigned\n",
|
||||
firstport + i, bus->qbus.name);
|
||||
#endif
|
||||
error_setg(errp, "firstport %u asks for ports %u-%u,"
|
||||
" but port %u has a companion assigned already",
|
||||
firstport, firstport, firstport + portcount - 1,
|
||||
firstport + i);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue