diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-21 07:19:34 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-12-10 12:15:13 -0500 |
commit | a3ef9bfb8808f615bd77dcc2ec5332e4cf670f92 (patch) | |
tree | 6820f0df7747d6ba989d4a3fb7e3fae4f6aee1c6 /softmmu/vl.c | |
parent | f650266bc53a0195fc227e4ba8e816ac6f2d19e8 (diff) | |
download | qemu-a3ef9bfb8808f615bd77dcc2ec5332e4cf670f92.zip qemu-a3ef9bfb8808f615bd77dcc2ec5332e4cf670f92.tar.gz qemu-a3ef9bfb8808f615bd77dcc2ec5332e4cf670f92.tar.bz2 |
vl: move CHECKPOINT_INIT after preconfig
Move CHECKPOINT_INIT right before the machine initialization is
completed. Everything before is essentially an extension of
command line parsing.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
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 1a80a9a..91ef218 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -4443,11 +4443,6 @@ void qemu_init(int argc, char **argv, char **envp) qemu_semihosting_connect_chardevs(); qemu_semihosting_console_init(); - /* This checkpoint is required by replay to separate prior clock - reading from the other reads, because timer polling functions query - clock values from the log. */ - replay_checkpoint(CHECKPOINT_INIT); - current_machine->boot_order = boot_order; /* parse features once if machine provides default cpu_type */ |