From: Anthony Liguori <[email protected]> It's just duplicated code now since we do the same thing in upstream.
Signed-off-by: Anthony Liguori <[email protected]> Signed-off-by: Avi Kivity <[email protected]> diff --git a/cpu-exec.c b/cpu-exec.c index bb77b5e..f959f4e 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -347,12 +347,6 @@ int cpu_exec(CPUState *env1) } #endif - /* kvm vcpu threads */ - if (kvm_enabled()) { - kvm_cpu_exec(env); - longjmp(env->jmp_env, 1); - } - if (kvm_enabled()) { kvm_cpu_exec(env); longjmp(env->jmp_env, 1); -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
