diff options
author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2014-09-05 17:04:21 +1000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-11-04 23:26:10 +0100 |
commit | 0b6ff57640a3d51a9738af553a05007a86df332e (patch) | |
tree | 3d6c437212c1e363bcc5f2e9f373d7414d9ace40 /target-ppc | |
parent | 8f9fb7ac4915dc12c23f9ebbd65808afb780abff (diff) |
target-ppc: Fix kvmppc_set_compat to use negotiated cpu-version
By mistake, QEMU uses the maximum compatibility level from the command
line instead of the value negotiated in client-architecture-support call.
This replaces @max_compat with @cpu_version. This only affects guests
which do not support the host CPU.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/translate_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 33fb4cc9c3..0530b0b821 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -9137,7 +9137,7 @@ int ppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version) break; } - if (kvm_enabled() && kvmppc_set_compat(cpu, cpu->max_compat) < 0) { + if (kvm_enabled() && kvmppc_set_compat(cpu, cpu->cpu_version) < 0) { error_report("Unable to set compatibility mode in KVM"); ret = -1; } |