mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
bootdevice: add Error **errp argument for validate_bootdevices()
It will be useful for checking when we change traditional boot order dynamically and propagate error message to the monitor. Signed-off-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
9816833d3b
commit
703008e81a
3 changed files with 17 additions and 8 deletions
10
bootdevice.c
10
bootdevice.c
|
@ -55,7 +55,7 @@ int qemu_boot_set(const char *boot_order)
|
|||
return boot_set_handler(boot_set_opaque, boot_order);
|
||||
}
|
||||
|
||||
void validate_bootdevices(const char *devices)
|
||||
void validate_bootdevices(const char *devices, Error **errp)
|
||||
{
|
||||
/* We just do some generic consistency checks */
|
||||
const char *p;
|
||||
|
@ -72,12 +72,12 @@ void validate_bootdevices(const char *devices)
|
|||
* features.
|
||||
*/
|
||||
if (*p < 'a' || *p > 'p') {
|
||||
fprintf(stderr, "Invalid boot device '%c'\n", *p);
|
||||
exit(1);
|
||||
error_setg(errp, "Invalid boot device '%c'", *p);
|
||||
return;
|
||||
}
|
||||
if (bitmap & (1 << (*p - 'a'))) {
|
||||
fprintf(stderr, "Boot device '%c' was given twice\n", *p);
|
||||
exit(1);
|
||||
error_setg(errp, "Boot device '%c' was given twice", *p);
|
||||
return;
|
||||
}
|
||||
bitmap |= 1 << (*p - 'a');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue