From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvP5-0004xa-PH for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOx-0004iL-5w for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:39 -0400 Received: from [199.232.76.173] (port=39099 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOw-0004hh-8o for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32781) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOv-0002L4-O8 for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:34 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:25 +0200 Message-Id: <1255017566-26220-21-git-send-email-gleb@redhat.com> In-Reply-To: <1255017566-26220-1-git-send-email-gleb@redhat.com> References: <1255017566-26220-1-git-send-email-gleb@redhat.com> Subject: [Qemu-devel] [PATCH 20/21] Move qemu cfg init before smp init. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kevin@koconnor.net Cc: qemu-devel@nongnu.org We will need to read qemu config during smp init. Signed-off-by: Gleb Natapov --- src/post.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/post.c b/src/post.c index e6f9c39..674f402 100644 --- a/src/post.c +++ b/src/post.c @@ -161,6 +161,8 @@ post() init_ivt(); init_bda(); + qemu_cfg_port_probe(); + pic_setup(); timer_setup(); mathcp_setup(); @@ -185,8 +187,6 @@ post() serial_setup(); mouse_setup(); - qemu_cfg_port_probe(); - init_bios_tables(); boot_setup(); -- 1.6.3.3