diff options
author | Paolo Bonzini | 2020-10-21 11:25:58 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-12-10 18:15:11 +0100 |
commit | e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8 (patch) | |
tree | 342bf50f0e243a707b80d6f96dc6f8d8dbcd0bd7 /softmmu/vl.c | |
parent | vl: split various early command line options to a separate function (diff) | |
download | qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.tar.gz qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.tar.xz qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.zip |
vl: move various initialization routines out of qemu_init
Some very simple initialization routines can be nested in existing
subsystem-level functions, do that to simplify qemu_init.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'softmmu/vl.c')
-rw-r--r-- | softmmu/vl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c index 9caff9fe8e..8640ddd3ec 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -4280,10 +4280,6 @@ void qemu_init(int argc, char **argv, char **envp) exit(1); } - blk_mig_init(); - ram_mig_init(); - dirty_bitmap_mig_init(); - qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, &error_fatal); @@ -4316,7 +4312,6 @@ void qemu_init(int argc, char **argv, char **envp) reading from the other reads, because timer polling functions query clock values from the log. */ replay_checkpoint(CHECKPOINT_INIT); - qdev_machine_init(); current_machine->boot_order = boot_order; |