target/mips: Convert VM clock update prints to warn_report
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 <alistair.francis@xilinx.com> Cc: James Hogan <james.hogan@imgtec.com> Message-Id: <e6acff8db6d264f913a18c86858b9aa600554e51.1505158760.git.alistair.francis@xilinx.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b62e39b469
commit
288cb9490b
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user