Accept a CPUState parameter instead of a kvm_context_t. Signed-off-by: Avi Kivity <avi@xxxxxxxxxx> --- qemu-kvm-x86.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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, -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html