In this patch, we probe the host checking for clocksource capabilities. In case it is found, it is advertised to the guest through the appropriate cpuid mechanism
Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> --- qemu/qemu-kvm-x86.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/qemu/qemu-kvm-x86.c b/qemu/qemu-kvm-x86.c index 21ec112..6b11f02 100644 --- a/qemu/qemu-kvm-x86.c +++ b/qemu/qemu-kvm-x86.c @@ -517,6 +517,11 @@ int kvm_arch_qemu_init_env(CPUState *cenv) int cpuid_nent = 0; CPUState copy; uint32_t i, limit; + int clocksource_feature = 0; +#ifdef KVM_CAP_CLOCKSOURCE + clocksource_feature = kvm_check_extension(kvm_context, KVM_CAP_CLOCKSOURCE); + clocksource_feature <<= KVM_FEATURE_CLOCKSOURCE; +#endif copy = *cenv; @@ -534,7 +539,7 @@ int kvm_arch_qemu_init_env(CPUState *cenv) pv_ent = &cpuid_ent[cpuid_nent++]; memset(pv_ent, 0, sizeof(*pv_ent)); pv_ent->function = KVM_CPUID_FEATURES; - pv_ent->eax = 0; + pv_ent->eax = clocksource_feature; #endif copy.regs[R_EAX] = 0; -- 1.5.0.6 ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ kvm-devel mailing list kvm-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-devel