diff options
author | David Hildenbrand <david@redhat.com> | 2017-09-28 22:36:53 +0200 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2017-10-20 13:32:10 +0200 |
commit | a7a2b8e3d57582df2f176069d57c1ddae667387d (patch) | |
tree | 649e8e95a6e7aa8b42ab02fe685184d2c3dee3d2 /target/s390x/kvm.c | |
parent | f875cb0c2180e182585dc00151e2cf74d20e7c8c (diff) | |
download | qemu-a7a2b8e3d57582df2f176069d57c1ddae667387d.zip |
s390x/kvm: drop two debug prints
Preparation for moving it out of kvm.c.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20170928203708.9376-16-david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/kvm.c')
-rw-r--r-- | target/s390x/kvm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c index bf6740df56..1950291f95 100644 --- a/target/s390x/kvm.c +++ b/target/s390x/kvm.c @@ -1679,7 +1679,6 @@ int kvm_s390_cpu_restart(S390CPU *cpu) SigpInfo si = {}; run_on_cpu(CPU(cpu), sigp_restart, RUN_ON_CPU_HOST_PTR(&si)); - DPRINTF("DONE: KVM cpu restart: %p\n", &cpu->env); return 0; } @@ -1781,7 +1780,6 @@ static int handle_sigp_single_dst(S390CPU *dst_cpu, uint8_t order, run_on_cpu(CPU(dst_cpu), sigp_cpu_reset, RUN_ON_CPU_HOST_PTR(&si)); break; default: - DPRINTF("KVM: unknown SIGP: 0x%x\n", order); set_sigp_status(&si, SIGP_STAT_INVALID_ORDER); } |