mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
bootdevice: add Error **errp argument for QEMUBootSetHandler
It will be useful for checking when we change traditional boot order dynamically and propagate error message to the monitor. For x86 architecture, we pass &local_err to set_boot_dev() when vm startup in pc_coms_init(). Cc: Michael S. Tsirkin <mst@redhat.com> Cc: Alexander Graf <agraf@suse.de> Cc: Blue Swirl <blauwirbel@gmail.com> Cc: qemu-ppc@nongnu.org Signed-off-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
3b08098b40
commit
ddcd55316f
7 changed files with 23 additions and 25 deletions
22
hw/i386/pc.c
22
hw/i386/pc.c
|
@ -282,7 +282,7 @@ static int boot_device2nibble(char boot_device)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int set_boot_dev(ISADevice *s, const char *boot_device)
|
||||
static void set_boot_dev(ISADevice *s, const char *boot_device, Error **errp)
|
||||
{
|
||||
#define PC_MAX_BOOT_DEVICES 3
|
||||
int nbds, bds[3] = { 0, };
|
||||
|
@ -290,25 +290,24 @@ static int set_boot_dev(ISADevice *s, const char *boot_device)
|
|||
|
||||
nbds = strlen(boot_device);
|
||||
if (nbds > PC_MAX_BOOT_DEVICES) {
|
||||
error_report("Too many boot devices for PC");
|
||||
return(1);
|
||||
error_setg(errp, "Too many boot devices for PC");
|
||||
return;
|
||||
}
|
||||
for (i = 0; i < nbds; i++) {
|
||||
bds[i] = boot_device2nibble(boot_device[i]);
|
||||
if (bds[i] == 0) {
|
||||
error_report("Invalid boot device for PC: '%c'",
|
||||
boot_device[i]);
|
||||
return(1);
|
||||
error_setg(errp, "Invalid boot device for PC: '%c'",
|
||||
boot_device[i]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]);
|
||||
rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1));
|
||||
return(0);
|
||||
}
|
||||
|
||||
static int pc_boot_set(void *opaque, const char *boot_device)
|
||||
static void pc_boot_set(void *opaque, const char *boot_device, Error **errp)
|
||||
{
|
||||
return set_boot_dev(opaque, boot_device);
|
||||
set_boot_dev(opaque, boot_device, errp);
|
||||
}
|
||||
|
||||
typedef struct pc_cmos_init_late_arg {
|
||||
|
@ -365,6 +364,7 @@ void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
|
|||
FDriveType fd_type[2] = { FDRIVE_DRV_NONE, FDRIVE_DRV_NONE };
|
||||
static pc_cmos_init_late_arg arg;
|
||||
PCMachineState *pc_machine = PC_MACHINE(machine);
|
||||
Error *local_err = NULL;
|
||||
|
||||
/* various important CMOS locations needed by PC/Bochs bios */
|
||||
|
||||
|
@ -412,7 +412,9 @@ void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
|
|||
object_property_set_link(OBJECT(machine), OBJECT(s),
|
||||
"rtc_state", &error_abort);
|
||||
|
||||
if (set_boot_dev(s, boot_device)) {
|
||||
set_boot_dev(s, boot_device, &local_err);
|
||||
if (local_err) {
|
||||
error_report("%s", error_get_pretty(local_err));
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue