diff options
author | Hollis Blanchard <hollisb@us.ibm.com> | 2008-05-21 18:22:51 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-06-06 21:22:09 +0300 |
commit | ce263d70e509287ee761f9bba519342f57b121ca (patch) | |
tree | 923836b0b73e57f85914b2aa7335dc14a06f19c5 /arch/powerpc/kvm | |
parent | e52b2af541bcb299212a63cfa3e3231618a415be (diff) | |
download | kernel_samsung_espresso10-ce263d70e509287ee761f9bba519342f57b121ca.zip kernel_samsung_espresso10-ce263d70e509287ee761f9bba519342f57b121ca.tar.gz kernel_samsung_espresso10-ce263d70e509287ee761f9bba519342f57b121ca.tar.bz2 |
KVM: ppc: Remove duplicate function
This was left behind from some code movement.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r-- | arch/powerpc/kvm/booke_guest.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/arch/powerpc/kvm/booke_guest.c b/arch/powerpc/kvm/booke_guest.c index 712d89a..9c8ad85 100644 --- a/arch/powerpc/kvm/booke_guest.c +++ b/arch/powerpc/kvm/booke_guest.c @@ -227,39 +227,6 @@ void kvmppc_check_and_deliver_interrupts(struct kvm_vcpu *vcpu) } } -static int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu) -{ - enum emulation_result er; - int r; - - er = kvmppc_emulate_instruction(run, vcpu); - switch (er) { - case EMULATE_DONE: - /* Future optimization: only reload non-volatiles if they were - * actually modified. */ - r = RESUME_GUEST_NV; - break; - case EMULATE_DO_MMIO: - run->exit_reason = KVM_EXIT_MMIO; - /* We must reload nonvolatiles because "update" load/store - * instructions modify register state. */ - /* Future optimization: only reload non-volatiles if they were - * actually modified. */ - r = RESUME_HOST_NV; - break; - case EMULATE_FAIL: - /* XXX Deliver Program interrupt to guest. */ - printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__, - vcpu->arch.last_inst); - r = RESUME_HOST; - break; - default: - BUG(); - } - - return r; -} - /** * kvmppc_handle_exit * |