The commit is pushed to "branch-rh7-3.10.0-327.4.5.vz7.11.x-ovz" and will 
appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh7-3.10.0-327.4.5.vz7.11.2
------>
commit 63c4f3ad92dbc7677973da4e9ab19ac4a02d5aa2
Author: Andrey Smetanin <[email protected]>
Date:   Tue Feb 16 13:50:22 2016 +0400

    ms/kvm/x86: Hyper-V internal helper to read MSR HV_X64_MSR_TIME_REF_COUNT
    
    This helper will be used also in Hyper-V SynIC timers implementation.
    
    ms commit - 93bf4172481c4b2a8544c83a687946252563edd0.
    
    Signed-off-by: Andrey Smetanin <[email protected]>
    
    Reviewed-by: Roman Kagan <[email protected]>
    CC: Gleb Natapov <[email protected]>
    CC: Paolo Bonzini <[email protected]>
    CC: "K. Y. Srinivasan" <[email protected]>
    CC: Haiyang Zhang <[email protected]>
    CC: Vitaly Kuznetsov <[email protected]>
    CC: Roman Kagan <[email protected]>
    CC: Denis V. Lunev <[email protected]>
    CC: [email protected]
    Signed-off-by: Paolo Bonzini <[email protected]>
---
 arch/x86/kvm/hyperv.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kvm/hyperv.c b/arch/x86/kvm/hyperv.c
index d2eee201..131f6b6 100644
--- a/arch/x86/kvm/hyperv.c
+++ b/arch/x86/kvm/hyperv.c
@@ -335,6 +335,11 @@ static void synic_init(struct kvm_vcpu_hv_synic *synic)
        }
 }
 
+static u64 get_time_ref_counter(struct kvm *kvm)
+{
+       return div_u64(get_kernel_ns() + kvm->arch.kvmclock_offset, 100);
+}
+
 void kvm_hv_vcpu_init(struct kvm_vcpu *vcpu)
 {
        synic_init(vcpu_to_synic(vcpu));
@@ -576,11 +581,9 @@ static int kvm_hv_get_msr_pw(struct kvm_vcpu *vcpu, u32 
msr, u64 *pdata)
        case HV_X64_MSR_HYPERCALL:
                data = hv->hv_hypercall;
                break;
-       case HV_X64_MSR_TIME_REF_COUNT: {
-               data =
-                    div_u64(get_kernel_ns() + kvm->arch.kvmclock_offset, 100);
+       case HV_X64_MSR_TIME_REF_COUNT:
+               data = get_time_ref_counter(kvm);
                break;
-       }
        case HV_X64_MSR_REFERENCE_TSC:
                data = hv->hv_tsc_page;
                break;
_______________________________________________
Devel mailing list
[email protected]
https://lists.openvz.org/mailman/listinfo/devel

Reply via email to