]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
x86: kvmclock: Do not setup kvmclock vsyscall in the absence of that clock
authorJan Kiszka <jan.kiszka@siemens.com>
Sat, 23 Feb 2013 16:05:29 +0000 (17:05 +0100)
committerGleb Natapov <gleb@redhat.com>
Wed, 27 Feb 2013 11:19:18 +0000 (13:19 +0200)
This fixes boot lockups with "no-kvmclock", when the host is not
exposing this particular feature (QEMU: -cpu ...,-kvmclock) or when
the kvmclock initialization failed for whatever reason.

Reviewed-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
arch/x86/kernel/kvmclock.c

index 5bedbdddf1f2e3383f8a6fc82f81cdb2ecdcd1ad..b730efad6fe98adf39b5d87ff8e873dfa823b50a 100644 (file)
@@ -160,8 +160,12 @@ int kvm_register_clock(char *txt)
 {
        int cpu = smp_processor_id();
        int low, high, ret;
-       struct pvclock_vcpu_time_info *src = &hv_clock[cpu].pvti;
+       struct pvclock_vcpu_time_info *src;
+
+       if (!hv_clock)
+               return 0;
 
+       src = &hv_clock[cpu].pvti;
        low = (int)__pa(src) | 1;
        high = ((u64)__pa(src) >> 32);
        ret = native_write_msr_safe(msr_kvm_system_time, low, high);
@@ -276,6 +280,9 @@ int __init kvm_setup_vsyscall_timeinfo(void)
        struct pvclock_vcpu_time_info *vcpu_time;
        unsigned int size;
 
+       if (!hv_clock)
+               return 0;
+
        size = PAGE_ALIGN(sizeof(struct pvclock_vsyscall_time_info)*NR_CPUS);
 
        preempt_disable();