diff options
author | Paolo Bonzini | 2020-11-30 19:44:49 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-12-15 18:51:51 +0100 |
commit | 5a1ee6077b89ee9a803aaf8d1c98004701f63684 (patch) | |
tree | ff3c0d5a2fc247b49974c38e2ccd9a1902a08b3f /stubs | |
parent | vl: move all generic initialization out of vl.c (diff) | |
download | qemu-5a1ee6077b89ee9a803aaf8d1c98004701f63684.tar.gz qemu-5a1ee6077b89ee9a803aaf8d1c98004701f63684.tar.xz qemu-5a1ee6077b89ee9a803aaf8d1c98004701f63684.zip |
chardev: do not use machine_init_done
machine_init_done is not the right flag to check when preconfig
is taken into account; for example "./qemu-system-x86_64 -serial
mon:stdio -preconfig" does not print the QEMU monitor header until after
exit_preconfig. Add back a custom bool for mux character devices. This
partially undoes commit c7278b4355 ("chardev: introduce chr_machine_done
hook", 2018-03-12), but it keeps the cleaner logic using a function
pointer in ChardevClass.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/machine-init-done.c | 8 | ||||
-rw-r--r-- | stubs/meson.build | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/stubs/machine-init-done.c b/stubs/machine-init-done.c deleted file mode 100644 index cd8e81392d..0000000000 --- a/stubs/machine-init-done.c +++ /dev/null @@ -1,8 +0,0 @@ -#include "qemu/osdep.h" -#include "sysemu/sysemu.h" - -bool machine_init_done = true; - -void qemu_add_machine_init_done_notifier(Notifier *notify) -{ -} diff --git a/stubs/meson.build b/stubs/meson.build index cc56c83063..80b1d81a31 100644 --- a/stubs/meson.build +++ b/stubs/meson.build @@ -21,7 +21,6 @@ stub_ss.add(files('iothread-lock.c')) stub_ss.add(files('isa-bus.c')) stub_ss.add(files('is-daemonized.c')) stub_ss.add(when: 'CONFIG_LINUX_AIO', if_true: files('linux-aio.c')) -stub_ss.add(files('machine-init-done.c')) stub_ss.add(files('migr-blocker.c')) stub_ss.add(files('monitor.c')) stub_ss.add(files('monitor-core.c')) |