mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
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>
This commit is contained in:
+3
-1
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user