diff options
Diffstat (limited to 'arch/x86/kernel/kvmclock.c')
| -rw-r--r-- | arch/x86/kernel/kvmclock.c | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c index 2bd81e302427..72cef58693c7 100644 --- a/arch/x86/kernel/kvmclock.c +++ b/arch/x86/kernel/kvmclock.c @@ -45,6 +45,11 @@ early_param("no-kvmclock", parse_no_kvmclock);  static struct pvclock_vsyscall_time_info *hv_clock;  static struct pvclock_wall_clock wall_clock; +struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void) +{ +	return hv_clock; +} +  /*   * The wallclock is the time of day when we booted. Since then, some time may   * have elapsed since the hypervisor wrote the data. So we try to account for @@ -305,7 +310,6 @@ int __init kvm_setup_vsyscall_timeinfo(void)  {  #ifdef CONFIG_X86_64  	int cpu; -	int ret;  	u8 flags;  	struct pvclock_vcpu_time_info *vcpu_time;  	unsigned int size; @@ -325,11 +329,6 @@ int __init kvm_setup_vsyscall_timeinfo(void)  		return 1;  	} -	if ((ret = pvclock_init_vsyscall(hv_clock, size))) { -		put_cpu(); -		return ret; -	} -  	put_cpu();  	kvm_clock.archdata.vclock_mode = VCLOCK_PVCLOCK; | 
