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 /hw/ppc/e500.c | |
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 'hw/ppc/e500.c')
-rw-r--r-- | hw/ppc/e500.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c index d300846c3d..e968386ff6 100644 --- a/hw/ppc/e500.c +++ b/hw/ppc/e500.c @@ -1048,10 +1048,6 @@ void ppce500_init(MachineState *machine, PPCE500Params *params) boot_info->entry = bios_entry; boot_info->dt_base = dt_base; boot_info->dt_size = dt_size; - - if (kvm_enabled()) { - kvmppc_init(); - } } static int e500_ccsr_initfn(SysBusDevice *dev) |