From: Alistair Francis <[email protected]> Convert the fprintf() messages in kvm_mips_update_state() to use warn_report() as they aren't errors, but are just warnings.
Signed-off-by: Alistair Francis <[email protected]> Cc: James Hogan <[email protected]> Message-Id: <e6acff8db6d264f913a18c86858b9aa600554e51.1505158760.git.alistair.fran...@xilinx.com> Signed-off-by: Paolo Bonzini <[email protected]> --- target/mips/kvm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/mips/kvm.c b/target/mips/kvm.c index a23aa43..3b7b1d9 100644 --- a/target/mips/kvm.c +++ b/target/mips/kvm.c @@ -526,7 +526,7 @@ static void kvm_mips_update_state(void *opaque, int running, RunState state) if (!cs->vcpu_dirty) { ret = kvm_mips_save_count(cs); if (ret < 0) { - fprintf(stderr, "Failed saving count\n"); + warn_report("Failed saving count"); } } } else { @@ -535,14 +535,14 @@ static void kvm_mips_update_state(void *opaque, int running, RunState state) ret = kvm_mips_put_one_ureg64(cs, KVM_REG_MIPS_COUNT_RESUME, &count_resume); if (ret < 0) { - fprintf(stderr, "Failed setting COUNT_RESUME\n"); + warn_report("Failed setting COUNT_RESUME"); return; } if (!cs->vcpu_dirty) { ret = kvm_mips_restore_count(cs); if (ret < 0) { - fprintf(stderr, "Failed restoring count\n"); + warn_report("Failed restoring count"); } } } -- 1.8.3.1
