public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix qemu PPC breakage in monitor.c
@ 2008-02-27 22:14 Jerone Young
  2008-02-27 22:29 ` [kvm-ppc-devel] " Hollis Blanchard
  2008-02-28  8:21 ` Avi Kivity
  0 siblings, 2 replies; 4+ messages in thread
From: Jerone Young @ 2008-02-27 22:14 UTC (permalink / raw)
  To: kvm-devel; +Cc: kvm-ppc-devel

# HG changeset patch
# User Jerone Young <jyoung5@us.ibm.com>
# Date 1204150440 21600
# Branch merge
# Node ID f255b23b6ef9461be4ee18fa0745f30c4fb66e6a
# Parent  64a281615f436e65ca7fb2f3c2721c374fbfc8be
Fix qemu PPC breakage in monitor.c

Recent pull of qemu_cvs has added function "qemu_system_cpu_hot_add" to the function "do_cput_set_nr" in monitor.c . Issue is qemu_system_cpu_hot_add is defined in acpi.c which is only compiled for arch with target base i386 (which are i386 & x86-64).

Signed-off-by: Jerone Young <jyoung5@us.ibm.com>

diff --git a/qemu/monitor.c b/qemu/monitor.c
--- a/qemu/monitor.c
+++ b/qemu/monitor.c
@@ -357,7 +357,9 @@ static void do_cpu_set_nr(int value, con
        term_printf("invalid status: %s\n", status);
        return;
     }
+#if defined(TARGET_I386) || defined(TARGET_X86_64)
     qemu_system_cpu_hot_add(value, state);
+#endif
 }
 
 static void do_info_jit(void)

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-02-28  8:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-27 22:14 [PATCH] Fix qemu PPC breakage in monitor.c Jerone Young
2008-02-27 22:29 ` [kvm-ppc-devel] " Hollis Blanchard
2008-02-28  8:23   ` Avi Kivity
2008-02-28  8:21 ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox