diff options
author | Alexander Graf <agraf@suse.de> | 2014-02-14 09:15:21 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-02-14 10:42:31 +0000 |
commit | 933b19ea9784de7ed2eb6e10262b9363c5c03ed7 (patch) | |
tree | ef50efbb381969e90c414b838760581a3485b066 /target-ppc | |
parent | 0888a29caac6e1b668e498a0ad4d1fea15de012b (diff) | |
download | hqemu-933b19ea9784de7ed2eb6e10262b9363c5c03ed7.zip hqemu-933b19ea9784de7ed2eb6e10262b9363c5c03ed7.tar.gz |
PPC: KVM: Add missing address space to ldl_phys helper
We now have to pass an address space to our _phys helpers. During the
transition apparently the EPR exit path missed out, so let's put it there.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | 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 781b72f..7af3fe2 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -1228,7 +1228,7 @@ int kvm_arch_handle_exit(CPUState *cs, struct kvm_run *run) #endif case KVM_EXIT_EPR: DPRINTF("handle epr\n"); - run->epr.epr = ldl_phys(env->mpic_iack); + run->epr.epr = ldl_phys(cs->as, env->mpic_iack); ret = 0; break; case KVM_EXIT_WATCHDOG: |