Message ID | 20201027182144.3315885-19-pbonzini@redhat.com |
---|---|
State | Accepted |
Commit | 07a91b1ac6c7edc0009de1abcd55ff4f6bdb9a14 |
Headers | show |
Series | cleanup qemu_init and make sense of command line processing | expand |
On Tue, 27 Oct 2020 14:21:33 -0400 Paolo Bonzini <pbonzini@redhat.com> wrote: > "Late" backends are created after the machine. > > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> > --- > softmmu/vl.c | 64 ++++++++++++++++++++++++++-------------------------- > 1 file changed, 32 insertions(+), 32 deletions(-) > > diff --git a/softmmu/vl.c b/softmmu/vl.c > index 109036c089..0c390b979e 100644 > --- a/softmmu/vl.c > +++ b/softmmu/vl.c > @@ -2755,11 +2755,41 @@ static void qemu_create_early_backends(void) > * The remainder of object creation happens after the > * creation of chardev, fsdev, net clients and device data types. > */ > -static bool object_create_delayed(const char *type, QemuOpts *opts) > +static bool object_create_late(const char *type, QemuOpts *opts) > { > return !object_create_early(type, opts); > } > > +static void qemu_create_late_backends(void) > +{ > + if (qtest_chrdev) { > + qtest_server_init(qtest_chrdev, qtest_log, &error_fatal); > + } > + > + net_init_clients(&error_fatal); > + > + qemu_opts_foreach(qemu_find_opts("object"), > + user_creatable_add_opts_foreach, > + object_create_late, &error_fatal); > + > + if (tpm_init() < 0) { > + exit(1); > + } > + > + qemu_opts_foreach(qemu_find_opts("mon"), > + mon_init_func, NULL, &error_fatal); > + > + if (foreach_device_config(DEV_SERIAL, serial_parse) < 0) > + exit(1); > + if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0) > + exit(1); > + if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0) > + exit(1); > + > + /* now chardevs have been created we may have semihosting to connect */ > + qemu_semihosting_connect_chardevs(); > + qemu_semihosting_console_init(); > +} > > static bool set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size, > MachineClass *mc) > @@ -3385,7 +3415,6 @@ void qemu_init(int argc, char **argv, char **envp) > ram_addr_t maxram_size; > uint64_t ram_slots = 0; > FILE *vmstate_dump_file = NULL; > - Error *err = NULL; > bool have_custom_ram_size; > > qemu_add_opts(&qemu_drive_opts); > @@ -4402,10 +4431,6 @@ void qemu_init(int argc, char **argv, char **envp) > */ > migration_object_init(); > > - if (qtest_chrdev) { > - qtest_server_init(qtest_chrdev, qtest_log, &error_fatal); > - } > - > opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL); > if (opts) { > boot_order = qemu_opt_get(opts, "order"); > @@ -4426,32 +4451,7 @@ void qemu_init(int argc, char **argv, char **envp) > boot_order = machine_class->default_boot_order; > } > > - if (net_init_clients(&err) < 0) { > - error_report_err(err); > - exit(1); > - } > - > - qemu_opts_foreach(qemu_find_opts("object"), > - user_creatable_add_opts_foreach, > - object_create_delayed, &error_fatal); > - > - if (tpm_init() < 0) { > - exit(1); > - } > - > - qemu_opts_foreach(qemu_find_opts("mon"), > - mon_init_func, NULL, &error_fatal); > - > - if (foreach_device_config(DEV_SERIAL, serial_parse) < 0) > - exit(1); > - if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0) > - exit(1); > - if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0) > - exit(1); > - > - /* now chardevs have been created we may have semihosting to connect */ > - qemu_semihosting_connect_chardevs(); > - qemu_semihosting_console_init(); > + qemu_create_late_backends(); > > current_machine->boot_order = boot_order; >
diff --git a/softmmu/vl.c b/softmmu/vl.c index 109036c089..0c390b979e 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -2755,11 +2755,41 @@ static void qemu_create_early_backends(void) * The remainder of object creation happens after the * creation of chardev, fsdev, net clients and device data types. */ -static bool object_create_delayed(const char *type, QemuOpts *opts) +static bool object_create_late(const char *type, QemuOpts *opts) { return !object_create_early(type, opts); } +static void qemu_create_late_backends(void) +{ + if (qtest_chrdev) { + qtest_server_init(qtest_chrdev, qtest_log, &error_fatal); + } + + net_init_clients(&error_fatal); + + qemu_opts_foreach(qemu_find_opts("object"), + user_creatable_add_opts_foreach, + object_create_late, &error_fatal); + + if (tpm_init() < 0) { + exit(1); + } + + qemu_opts_foreach(qemu_find_opts("mon"), + mon_init_func, NULL, &error_fatal); + + if (foreach_device_config(DEV_SERIAL, serial_parse) < 0) + exit(1); + if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0) + exit(1); + if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0) + exit(1); + + /* now chardevs have been created we may have semihosting to connect */ + qemu_semihosting_connect_chardevs(); + qemu_semihosting_console_init(); +} static bool set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size, MachineClass *mc) @@ -3385,7 +3415,6 @@ void qemu_init(int argc, char **argv, char **envp) ram_addr_t maxram_size; uint64_t ram_slots = 0; FILE *vmstate_dump_file = NULL; - Error *err = NULL; bool have_custom_ram_size; qemu_add_opts(&qemu_drive_opts); @@ -4402,10 +4431,6 @@ void qemu_init(int argc, char **argv, char **envp) */ migration_object_init(); - if (qtest_chrdev) { - qtest_server_init(qtest_chrdev, qtest_log, &error_fatal); - } - opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL); if (opts) { boot_order = qemu_opt_get(opts, "order"); @@ -4426,32 +4451,7 @@ void qemu_init(int argc, char **argv, char **envp) boot_order = machine_class->default_boot_order; } - if (net_init_clients(&err) < 0) { - error_report_err(err); - exit(1); - } - - qemu_opts_foreach(qemu_find_opts("object"), - user_creatable_add_opts_foreach, - object_create_delayed, &error_fatal); - - if (tpm_init() < 0) { - exit(1); - } - - qemu_opts_foreach(qemu_find_opts("mon"), - mon_init_func, NULL, &error_fatal); - - if (foreach_device_config(DEV_SERIAL, serial_parse) < 0) - exit(1); - if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0) - exit(1); - if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0) - exit(1); - - /* now chardevs have been created we may have semihosting to connect */ - qemu_semihosting_connect_chardevs(); - qemu_semihosting_console_init(); + qemu_create_late_backends(); current_machine->boot_order = boot_order;
"Late" backends are created after the machine. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> --- softmmu/vl.c | 64 ++++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 32 deletions(-)