diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-27 14:46:02 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2015-09-20 22:48:38 +0200 |
commit | 116dc18db6854cc38c6abff799019b7237365a36 (patch) | |
tree | a39f964c8a8460a3ad84971f09cf9047f8e5cb14 /target-ppc/Makefile.objs | |
parent | 18640989a9f5e4d2e84b566c52ff1fccfa0dbf4a (diff) |
kvm_ppc: remove kvmppc_timer_hack
QEMU does have an I/O thread now, that can be interrupted at any time
because the VCPU thread runs outside the iothread mutex.
Therefore, the kvmppc_timer_hack is obsolete. Remove it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/Makefile.objs')
-rw-r--r-- | target-ppc/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/Makefile.objs b/target-ppc/Makefile.objs index 47a3e983ec..e667e69701 100644 --- a/target-ppc/Makefile.objs +++ b/target-ppc/Makefile.objs @@ -4,7 +4,7 @@ ifeq ($(CONFIG_SOFTMMU),y) obj-y += machine.o mmu_helper.o mmu-hash32.o monitor.o obj-$(TARGET_PPC64) += mmu-hash64.o arch_dump.o endif -obj-$(CONFIG_KVM) += kvm.o kvm_ppc.o +obj-$(CONFIG_KVM) += kvm.o obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o obj-y += dfp_helper.o obj-y += excp_helper.o |