On 18.09.2017 18:00, David Hildenbrand wrote: > Preparation for moving it out of kvm.c. > > Signed-off-by: David Hildenbrand <da...@redhat.com> > --- > target/s390x/kvm.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c > index 01c4125d21..d759edf1c8 100644 > --- a/target/s390x/kvm.c > +++ b/target/s390x/kvm.c > @@ -1640,7 +1640,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; > } > > @@ -1742,7 +1741,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); > }
Reviewed-by: Thomas Huth <th...@redhat.com>