File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ #ifndef _ASM_X86_KVM_CLOCK_H
2
+ #define _ASM_X86_KVM_CLOCK_H
3
+
4
+ extern struct clocksource kvm_clock ;
5
+
6
+ #endif /* _ASM_X86_KVM_CLOCK_H */
Original file line number Diff line number Diff line change 28
28
29
29
#include <asm/x86_init.h>
30
30
#include <asm/reboot.h>
31
+ #include <asm/kvmclock.h>
31
32
32
33
static int kvmclock __ro_after_init = 1 ;
33
34
static int msr_kvm_system_time = MSR_KVM_SYSTEM_TIME ;
@@ -49,6 +50,7 @@ struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void)
49
50
{
50
51
return hv_clock ;
51
52
}
53
+ EXPORT_SYMBOL_GPL (pvclock_pvti_cpu0_va );
52
54
53
55
/*
54
56
* The wallclock is the time of day when we booted. Since then, some time may
@@ -174,13 +176,14 @@ bool kvm_check_and_clear_guest_paused(void)
174
176
return ret ;
175
177
}
176
178
177
- static struct clocksource kvm_clock = {
179
+ struct clocksource kvm_clock = {
178
180
.name = "kvm-clock" ,
179
181
.read = kvm_clock_get_cycles ,
180
182
.rating = 400 ,
181
183
.mask = CLOCKSOURCE_MASK (64 ),
182
184
.flags = CLOCK_SOURCE_IS_CONTINUOUS ,
183
185
};
186
+ EXPORT_SYMBOL_GPL (kvm_clock );
184
187
185
188
int kvm_register_clock (char * txt )
186
189
{
You can’t perform that action at this time.
0 commit comments