From: Avi Kivity <[email protected]> Accept a CPUState parameter instead of a kvm_context_t.
Signed-off-by: Avi Kivity <[email protected]> Acked-by: Glauber Costa <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]> diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c index 95b7aa5..0eb4060 100644 --- a/qemu-kvm-x86.c +++ b/qemu-kvm-x86.c @@ -1132,7 +1132,7 @@ struct kvm_para_features { { -1, -1 } }; -static int get_para_features(kvm_context_t kvm_context) +static int get_para_features(CPUState *env) { int i, features = 0; @@ -1184,7 +1184,7 @@ int kvm_arch_init_vcpu(CPUState *cenv) pv_ent = &cpuid_ent[cpuid_nent++]; memset(pv_ent, 0, sizeof(*pv_ent)); pv_ent->function = KVM_CPUID_FEATURES; - pv_ent->eax = get_para_features(kvm_context); + pv_ent->eax = get_para_features(cenv); #endif kvm_trim_features(&cenv->cpuid_features, -- 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
