diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2017-06-21 03:07:52 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-06-21 03:07:52 -0400 |
commit | f0cd9ae5d0df8668e76359a3e0e99856aa9c53b9 (patch) | |
tree | 84d3297b16fa7e373f2eabef56cd12ae5a9b8a29 /include/linux/timekeeper_internal.h | |
parent | 098b0e01a91c42aaaf0425605cd126b03fcb0bcf (diff) | |
parent | 8e6cec1c7c5afa489687c90be15d6ed82c742975 (diff) |
Merge branch 'timers/urgent' into timers/core
Pick up dependent changes.
Diffstat (limited to 'include/linux/timekeeper_internal.h')
-rw-r--r-- | include/linux/timekeeper_internal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h index 110f4532188c..f7043ccca81c 100644 --- a/include/linux/timekeeper_internal.h +++ b/include/linux/timekeeper_internal.h | |||
@@ -29,7 +29,6 @@ | |||
29 | */ | 29 | */ |
30 | struct tk_read_base { | 30 | struct tk_read_base { |
31 | struct clocksource *clock; | 31 | struct clocksource *clock; |
32 | u64 (*read)(struct clocksource *cs); | ||
33 | u64 mask; | 32 | u64 mask; |
34 | u64 cycle_last; | 33 | u64 cycle_last; |
35 | u32 mult; | 34 | u32 mult; |
@@ -58,7 +57,7 @@ struct tk_read_base { | |||
58 | * interval. | 57 | * interval. |
59 | * @xtime_remainder: Shifted nano seconds left over when rounding | 58 | * @xtime_remainder: Shifted nano seconds left over when rounding |
60 | * @cycle_interval | 59 | * @cycle_interval |
61 | * @raw_interval: Raw nano seconds accumulated per NTP interval. | 60 | * @raw_interval: Shifted raw nano seconds accumulated per NTP interval. |
62 | * @ntp_error: Difference between accumulated time and NTP time in ntp | 61 | * @ntp_error: Difference between accumulated time and NTP time in ntp |
63 | * shifted nano seconds. | 62 | * shifted nano seconds. |
64 | * @ntp_error_shift: Shift conversion between clock shifted nano seconds and | 63 | * @ntp_error_shift: Shift conversion between clock shifted nano seconds and |
@@ -100,7 +99,7 @@ struct timekeeper { | |||
100 | u64 cycle_interval; | 99 | u64 cycle_interval; |
101 | u64 xtime_interval; | 100 | u64 xtime_interval; |
102 | s64 xtime_remainder; | 101 | s64 xtime_remainder; |
103 | u32 raw_interval; | 102 | u64 raw_interval; |
104 | /* The ntp_tick_length() value currently being used. | 103 | /* The ntp_tick_length() value currently being used. |
105 | * This cached copy ensures we consistently apply the tick | 104 | * This cached copy ensures we consistently apply the tick |
106 | * length for an entire tick, as ntp_tick_length may change | 105 | * length for an entire tick, as ntp_tick_length may change |