[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 14/20] softmmu: initialize spice and audio earlier
From: |
Gerd Hoffmann |
Subject: |
[PATCH v5 14/20] softmmu: initialize spice and audio earlier |
Date: |
Thu, 2 Jul 2020 15:25:19 +0200 |
audiodev must be initialized before machine_set_property
so the machine can have audiodev property aliases.
spice must initialize before audiodev because the default
audiodev is spice only in case spice is actually enabled.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
softmmu/vl.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/softmmu/vl.c b/softmmu/vl.c
index 3e15ee243572..8ee91219060a 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -4131,12 +4131,17 @@ void qemu_init(int argc, char **argv, char **envp)
fsdev_init_func, NULL, &error_fatal);
#endif
+ /* spice needs the timers to be initialized by this point */
+ /* spice must initialize before audio as it changes the default auiodev */
+ qemu_spice_init();
+
/*
- * Note: we need to create block backends before
+ * Note: we need to create audio and block backends before
* machine_set_property(), so machine properties can refer to
* them.
*/
configure_blockdev(&bdo_queue, machine_class, snapshot);
+ audio_init_audiodevs();
machine_opts = qemu_get_machine_opts();
qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
@@ -4230,9 +4235,6 @@ void qemu_init(int argc, char **argv, char **envp)
semihosting_arg_fallback(kernel_filename, kernel_cmdline);
}
- /* spice needs the timers to be initialized by this point */
- qemu_spice_init();
-
cpu_ticks_init();
if (default_net) {
@@ -4342,8 +4344,6 @@ void qemu_init(int argc, char **argv, char **envp)
create_default_memdev(current_machine, mem_path);
}
- audio_init_audiodevs();
-
/* from here on runstate is RUN_STATE_PRELAUNCH */
machine_run_board_init(current_machine);
--
2.18.4
- [PATCH v5 00/20] audio: deprecate -soundhw, Gerd Hoffmann, 2020/07/02
- [PATCH v5 01/20] stubs: add isa_create_simple, Gerd Hoffmann, 2020/07/02
- [PATCH v5 08/20] audio: deprecate -soundhw gus, Gerd Hoffmann, 2020/07/02
- [PATCH v5 02/20] stubs: add pci_create_simple, Gerd Hoffmann, 2020/07/02
- [PATCH v5 16/20] audio: create pcspk device early, Gerd Hoffmann, 2020/07/02
- [PATCH v5 13/20] pc_basic_device_init: drop no_vmport arg, Gerd Hoffmann, 2020/07/02
- [PATCH v5 17/20] audio: deprecate -soundhw pcspk, Gerd Hoffmann, 2020/07/02
- [PATCH v5 14/20] softmmu: initialize spice and audio earlier,
Gerd Hoffmann <=
- [PATCH v5 12/20] pc_basic_device_init: drop has_pit arg, Gerd Hoffmann, 2020/07/02
- [PATCH v5 03/20] audio: add deprecated_register_soundhw, Gerd Hoffmann, 2020/07/02
- [PATCH v5 07/20] audio: deprecate -soundhw cs4231a, Gerd Hoffmann, 2020/07/02
- [PATCH v5 20/20] audio: set default value for pcspk.iobase property, Gerd Hoffmann, 2020/07/02
- [PATCH v5 19/20] pcspk: update docs/system/target-i386-desc.rst.inc, Gerd Hoffmann, 2020/07/02
- [PATCH v5 09/20] audio: deprecate -soundhw sb16, Gerd Hoffmann, 2020/07/02
- [PATCH v5 18/20] audio: add soundhw deprecation notice, Gerd Hoffmann, 2020/07/02
- [PATCH v5 11/20] pc_basic_device_init: pass PCMachineState, Gerd Hoffmann, 2020/07/02
- [PATCH v5 05/20] audio: deprecate -soundhw es1370, Gerd Hoffmann, 2020/07/02