diff options
Diffstat (limited to 'arch/x86/kernel/tsc_64.c')
-rw-r--r-- | arch/x86/kernel/tsc_64.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/x86/kernel/tsc_64.c b/arch/x86/kernel/tsc_64.c index 32edd2c50e94..204a9080af04 100644 --- a/arch/x86/kernel/tsc_64.c +++ b/arch/x86/kernel/tsc_64.c | |||
@@ -63,7 +63,7 @@ static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu) | |||
63 | local_irq_restore(flags); | 63 | local_irq_restore(flags); |
64 | } | 64 | } |
65 | 65 | ||
66 | unsigned long long sched_clock(void) | 66 | unsigned long long native_sched_clock(void) |
67 | { | 67 | { |
68 | unsigned long a = 0; | 68 | unsigned long a = 0; |
69 | 69 | ||
@@ -77,6 +77,19 @@ unsigned long long sched_clock(void) | |||
77 | return cycles_2_ns(a); | 77 | return cycles_2_ns(a); |
78 | } | 78 | } |
79 | 79 | ||
80 | /* We need to define a real function for sched_clock, to override the | ||
81 | weak default version */ | ||
82 | #ifdef CONFIG_PARAVIRT | ||
83 | unsigned long long sched_clock(void) | ||
84 | { | ||
85 | return paravirt_sched_clock(); | ||
86 | } | ||
87 | #else | ||
88 | unsigned long long | ||
89 | sched_clock(void) __attribute__((alias("native_sched_clock"))); | ||
90 | #endif | ||
91 | |||
92 | |||
80 | static int tsc_unstable; | 93 | static int tsc_unstable; |
81 | 94 | ||
82 | inline int check_tsc_unstable(void) | 95 | inline int check_tsc_unstable(void) |