From: Jan Kiszka Date: Mon, 20 Aug 2012 18:11:36 +0000 (+0200) Subject: Drop redundant resume_all_vcpus() from main() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e7bdf659c16e1cefd61f53648503d8c060668d6b;p=qemu.git Drop redundant resume_all_vcpus() from main() VCPUs are either resumed directly via vm_start(), after the incoming migration is done, or when a continue command is issued. We don't need the explicit resume before entering main_loop(). Signed-off-by: Jan Kiszka Signed-off-by: Andreas Färber --- diff --git a/vl.c b/vl.c index 41c367db0a..6e6225f09b 100644 --- a/vl.c +++ b/vl.c @@ -4415,7 +4415,6 @@ int main(int argc, char **argv, char **envp) os_setup_post(); - resume_all_vcpus(); main_loop(); bdrv_close_all(); pause_all_vcpus();