[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 16/19] softmmu: initialize spice and audio earlier
From: |
Gerd Hoffmann |
Subject: |
[PATCH v3 16/19] softmmu: initialize spice and audio earlier |
Date: |
Mon, 22 Jun 2020 13:29:11 +0200 |
audiodev must be initialized before machine_set_property
so the machine can have auiodev 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 | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/softmmu/vl.c b/softmmu/vl.c
index f669c06ede4a..b8dc1f5a0e86 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) {
--
2.18.4
- [PATCH v3 00/19] audio: deprecate -soundhw, Gerd Hoffmann, 2020/06/22
- [PATCH v3 01/19] stubs: add isa_create_simple, Gerd Hoffmann, 2020/06/22
- [PATCH v3 04/19] audio: deprecate -soundhw ac97, Gerd Hoffmann, 2020/06/22
- [PATCH v3 10/19] audio: deprecate -soundhw hda, Gerd Hoffmann, 2020/06/22
- [PATCH v3 03/19] audio: add deprecated_register_soundhw, Gerd Hoffmann, 2020/06/22
- [PATCH v3 02/19] stubs: add pci_create_simple, Gerd Hoffmann, 2020/06/22
- [PATCH v3 16/19] softmmu: initialize spice and audio earlier,
Gerd Hoffmann <=
- [PATCH v3 15/19] pc_basic_device_init: drop no_vmport arg, Gerd Hoffmann, 2020/06/22
- [PATCH v3 14/19] pc_basic_device_init: drop has_pit arg, Gerd Hoffmann, 2020/06/22
- [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Gerd Hoffmann, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Thomas Huth, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Philippe Mathieu-Daudé, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Paolo Bonzini, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Paolo Bonzini, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Gerd Hoffmann, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Paolo Bonzini, 2020/06/22
- Re: [PATCH v3 11/19] audio: deprecate -soundhw pcspk, Gerd Hoffmann, 2020/06/22