Commit 3741c250 authored by Dou Liyang's avatar Dou Liyang Committed by Paolo Bonzini
Browse files

vl: Move the cpu_synchronize_all_post_init() after generic devices initialization



At the Qemu initialization, we call the cpu_synchronize_all_post_init()
to synchronize All CPU states to KVM in the ./vl.c::main().

Currently, it is called before we initialize the CPUs, which is created
by "-device" command and parsed by generic devices initialization, So,
these CPUs may be ignored to synchronize.

The patch moves the cpu_synchronize_all_post_init func after generic
devices initialization to make sure that all the CPUs can be included.

Signed-off-by: default avatarDou Liyang <douly.fnst@cn.fujitsu.com>
Message-Id: <1485916178-17838-1-git-send-email-douly.fnst@cn.fujitsu.com>
Reviewed-by: default avatarEduardo Habkost <ehabkost@redhat.com>
Acked-by: default avatarEduardo Habkost <ehabkost@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent a721f53b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4462,8 +4462,6 @@ int main(int argc, char **argv, char **envp)

    audio_init();

    cpu_synchronize_all_post_init();

    if (hax_enabled()) {
        hax_sync_vcpus();
    }
@@ -4489,6 +4487,8 @@ int main(int argc, char **argv, char **envp)
        exit(1);
    }

    cpu_synchronize_all_post_init();

    numa_post_machine_init();

    rom_reset_order_override();