diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-06-30 15:12:17 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-07-07 15:25:11 -0300 |
commit | d6276d26bd92c683c7ca194b6f6f48fd8994c1ed (patch) | |
tree | 987cd66c878ca164ec1fb4cd2b67c71f30202e4a /target-i386 | |
parent | 6aff24c6a61c6fec31e555c7748ba6085b7b2c06 (diff) | |
download | qemu-d6276d26bd92c683c7ca194b6f6f48fd8994c1ed.zip |
target-i386: Show host and VM TSC frequencies on mismatch
Improve the TSC frequency mismatch warning to show the host and
VM TSC frequencies.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/kvm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-i386/kvm.c b/target-i386/kvm.c index f3698f19b5..9679415e43 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -566,7 +566,9 @@ static int kvm_arch_set_tsc_khz(CPUState *cs) -ENOTSUP; if (cur_freq <= 0 || cur_freq != env->tsc_khz) { error_report("warning: TSC frequency mismatch between " - "VM and host, and TSC scaling unavailable"); + "VM (%" PRId64 " kHz) and host (%d kHz), " + "and TSC scaling unavailable", + env->tsc_khz, cur_freq); return r; } } |