diff mbox

[20/21] Move qemu cfg init before smp init.

Message ID 1255017566-26220-21-git-send-email-gleb@redhat.com
State Not Applicable
Headers show

Commit Message

Gleb Natapov Oct. 8, 2009, 3:59 p.m. UTC
We will need to read qemu config during smp init.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
---
 src/post.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Kevin O'Connor Oct. 9, 2009, 2:18 a.m. UTC | #1
On Thu, Oct 08, 2009 at 05:59:25PM +0200, Gleb Natapov wrote:
> We will need to read qemu config during smp init.
> 
> Signed-off-by: Gleb Natapov <gleb@redhat.com>

Thanks!  I applied patches 1 - 20.

-Kevin
diff mbox

Patch

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();