public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Use cpu_is_bsp() to check for bsp cpu.
@ 2009-06-25 12:20 Gleb Natapov
  2009-06-28  9:27 ` Avi Kivity
  0 siblings, 1 reply; 2+ messages in thread
From: Gleb Natapov @ 2009-06-25 12:20 UTC (permalink / raw)
  To: avi; +Cc: kvm


Signed-off-by: Gleb Natapov <gleb@redhat.com>
---
 qemu-kvm-x86.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c
index 568df53..a78073e 100644
--- a/qemu-kvm-x86.c
+++ b/qemu-kvm-x86.c
@@ -23,6 +23,7 @@
 #include <sys/ioctl.h>
 
 #include "kvm.h"
+#include "hw/pc.h"
 
 #define MSR_IA32_TSC		0x10
 
@@ -1349,7 +1350,7 @@ int handle_tpr_access(void *opaque, kvm_vcpu_context_t vcpu,
 void kvm_arch_cpu_reset(CPUState *env)
 {
     kvm_arch_load_regs(env);
-    if (env->cpu_index != 0) {
+    if (!cpu_is_bsp(env)) {
 	if (kvm_irqchip_in_kernel(kvm_context)) {
 #ifdef KVM_CAP_MP_STATE
 	    kvm_reset_mpstate(env->kvm_cpu_state.vcpu_ctx);
@@ -1583,7 +1584,7 @@ void kvm_update_after_sipi(CPUState *env)
 
 void kvm_apic_init(CPUState *env)
 {
-    if (env->cpu_index != 0)
+    if (!cpu_is_bsp(env))
 	env->kvm_cpu_state.init = 1;
     kvm_update_interrupt_request(env);
 }
-- 
1.6.2.1


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

end of thread, other threads:[~2009-06-28  9:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-25 12:20 [PATCH] Use cpu_is_bsp() to check for bsp cpu Gleb Natapov
2009-06-28  9:27 ` Avi Kivity

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