From: Jan Kiszka Date: Thu, 28 Jan 2010 08:30:51 +0000 (+0100) Subject: KVM: Request setting of nmi_pending and sipi_vector X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=aee028b95d1d250a727583a14c864bc95ec27c69;p=qmiga%2Fqemu.git KVM: Request setting of nmi_pending and sipi_vector The final version of VCPU events in 2.6.33 will allow to skip nmi_pending and sipi_vector on KVM_SET_VCPU_EVENTS. For now let's write them unconditionally, which is unproblematic for upstream due to missing SMP support. Future version which enable SMP will write them only on reset. Signed-off-by: Jan Kiszka Signed-off-by: Marcelo Tosatti --- diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 5b093ce3bf..b457b96d46 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -794,6 +794,9 @@ static int kvm_put_vcpu_events(CPUState *env) events.sipi_vector = env->sipi_vector; + events.flags = + KVM_VCPUEVENT_VALID_NMI_PENDING | KVM_VCPUEVENT_VALID_SIPI_VECTOR; + return kvm_vcpu_ioctl(env, KVM_SET_VCPU_EVENTS, &events); #else return 0;