From patchwork Wed Jan 18 13:39:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dou Liyang X-Patchwork-Id: 716660 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3v3Smz037rz9sf9 for ; Thu, 19 Jan 2017 00:41:38 +1100 (AEDT) Received: from localhost ([::1]:41596 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTqUW-0002ah-Vl for incoming@patchwork.ozlabs.org; Wed, 18 Jan 2017 08:41:33 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59424) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTqTs-0002Ja-LM for qemu-devel@nongnu.org; Wed, 18 Jan 2017 08:40:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTqTq-0001cw-1x for qemu-devel@nongnu.org; Wed, 18 Jan 2017 08:40:52 -0500 Received: from [59.151.112.132] (port=11603 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTqTp-0001bp-JQ for qemu-devel@nongnu.org; Wed, 18 Jan 2017 08:40:49 -0500 X-IronPort-AV: E=Sophos;i="5.22,518,1449504000"; d="scan'208";a="14880271" Received: from unknown (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 18 Jan 2017 21:40:46 +0800 Received: from G08CNEXCHPEKD03.g08.fujitsu.local (unknown [10.167.33.85]) by cn.fujitsu.com (Postfix) with ESMTP id 76DDC47B1500; Wed, 18 Jan 2017 21:40:41 +0800 (CST) Received: from localhost.localdomain.localdomain (10.167.226.106) by G08CNEXCHPEKD03.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 18 Jan 2017 21:40:41 +0800 From: Dou Liyang To: Date: Wed, 18 Jan 2017 21:39:55 +0800 Message-ID: <1484746795-19523-1-git-send-email-douly.fnst@cn.fujitsu.com> X-Mailer: git-send-email 2.5.5 MIME-Version: 1.0 X-Originating-IP: [10.167.226.106] X-yoursite-MailScanner-ID: 76DDC47B1500.A1594 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: douly.fnst@cn.fujitsu.com X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 59.151.112.132 Subject: [Qemu-devel] [PATCH v2] vl: Ensure the cpu_synchronize_all_post_init() in the appropriate location X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Dou Liyang , sergey.fedorov@linaro.org, fanc.fnst@cn.fujitsu.com, caoj.fnst@cn.fujitsu.com, izumi.taku@jp.fujitsu.com, pbonzini@redhat.com, alex.bennee@linaro.org, rth@twiddle.net Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" 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 created by "-device" command, So, these CPUs may be ignored to synchronize. The patch moves the numa_post_machine_init func in the appropriate location to make sure that all the CPUs has already been created when it is called. Signed-off-by: Dou Liyang --- Change log v1-> v2: 1. Split it from https://lists.nongnu.org/archive/html/qemu-devel/2017-01/msg03354.html 2. Rewrite the log. vl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vl.c b/vl.c index c643d3f..38269be 100644 --- a/vl.c +++ b/vl.c @@ -4547,8 +4547,6 @@ int main(int argc, char **argv, char **envp) audio_init(); - cpu_synchronize_all_post_init(); - numa_post_machine_init(); if (qemu_opts_foreach(qemu_find_opts("fw_cfg"), @@ -4571,6 +4569,9 @@ int main(int argc, char **argv, char **envp) device_init_func, NULL, NULL)) { exit(1); } + + cpu_synchronize_all_post_init(); + rom_reset_order_override(); /* Did we create any drives that we failed to create a device for? */