From 9ef61f2a197f9dbae104fc1d18634c29d91b4a4e Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Tue, 10 Jan 2012 17:03:02 +0100 Subject: [PATCH] PPC: KVM: Ignore ENABLE_PAPR to support very old HV KVM kernels Very old kernels (3.1) didn't expose the PAPR capability yet, but still did work with HV KVM. Make the error a warning so we can work on them. Signed-off-by: Alexander Graf --- target-ppc/kvm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index a03e99c..923677c 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -745,7 +745,7 @@ void kvmppc_set_papr(CPUState *env) ret = kvm_vcpu_ioctl(env, KVM_ENABLE_CAP, &cap); if (ret) { - goto fail; + fprintf(stderr, "You're running a very old kernel. Expect breakage!\n"); } /* -- 1.6.0.2