vl: move -global check earlier

The check has the same effect here, it only matters that it is performed
once all devices, both builtin and user-specified, have been created.

Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2020-10-27 04:26:14 -04:00
parent 7691bdef69
commit cca686b44a
1 changed files with 2 additions and 1 deletions

View File

@ -3490,6 +3490,8 @@ static void qemu_machine_creation_done(void)
net_check_clients();
}
qdev_prop_check_globals();
if (boot_once) {
qemu_boot_set(boot_once, &error_fatal);
qemu_register_reset(restore_boot_order, g_strdup(boot_order));
@ -4547,7 +4549,6 @@ void qemu_init(int argc, char **argv, char **envp)
replay_vmstate_init();
}
qdev_prop_check_globals();
if (vmstate_dump_file) {
/* dump and exit */
dump_vmstate_json_to_file(vmstate_dump_file);