f0bf933e69
- qemu-user: add device mapper and loopback ioctls, enabling kpatkx OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=40
30 lines
886 B
Diff
30 lines
886 B
Diff
From 9ef61f2a197f9dbae104fc1d18634c29d91b4a4e Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
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 <agraf@suse.de>
|
|
---
|
|
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
|
|
|