diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-07-16 17:05:13 -0400 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2014-07-23 18:01:52 -0400 |
commit | 4a0e637738f06673725792d74eed67f8779b62c7 (patch) | |
tree | a5943ca88cc98cf65d3d2fd22f6311699ed2222b /arch/arm64 | |
parent | 09ec54429c6d10f87d1f084de53ae2c1c3a81108 (diff) |
clocksource: Get rid of cycle_last
cycle_last was added to the clocksource to support the TSC
validation. We moved that to the core code, so we can get rid of the
extra copy.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/kernel/vdso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/vdso.c b/arch/arm64/kernel/vdso.c index 50384fec56c4..574672f001f7 100644 --- a/arch/arm64/kernel/vdso.c +++ b/arch/arm64/kernel/vdso.c | |||
@@ -224,7 +224,7 @@ void update_vsyscall(struct timekeeper *tk) | |||
224 | vdso_data->wtm_clock_nsec = tk->wall_to_monotonic.tv_nsec; | 224 | vdso_data->wtm_clock_nsec = tk->wall_to_monotonic.tv_nsec; |
225 | 225 | ||
226 | if (!use_syscall) { | 226 | if (!use_syscall) { |
227 | vdso_data->cs_cycle_last = tk->clock->cycle_last; | 227 | vdso_data->cs_cycle_last = tk->cycle_last; |
228 | vdso_data->xtime_clock_sec = tk->xtime_sec; | 228 | vdso_data->xtime_clock_sec = tk->xtime_sec; |
229 | vdso_data->xtime_clock_nsec = tk->xtime_nsec; | 229 | vdso_data->xtime_clock_nsec = tk->xtime_nsec; |
230 | vdso_data->cs_mult = tk->mult; | 230 | vdso_data->cs_mult = tk->mult; |