diff options
Diffstat (limited to 'kernel/time')
-rw-r--r-- | kernel/time/Makefile | 2 | ||||
-rw-r--r-- | kernel/time/clocksource.c | 529 | ||||
-rw-r--r-- | kernel/time/jiffies.c | 6 | ||||
-rw-r--r-- | kernel/time/ntp.c | 7 | ||||
-rw-r--r-- | kernel/time/tick-sched.c | 9 | ||||
-rw-r--r-- | kernel/time/timeconv.c | 127 | ||||
-rw-r--r-- | kernel/time/timekeeping.c | 536 | ||||
-rw-r--r-- | kernel/time/timer_list.c | 2 | ||||
-rw-r--r-- | kernel/time/timer_stats.c | 2 |
9 files changed, 848 insertions, 372 deletions
diff --git a/kernel/time/Makefile b/kernel/time/Makefile index 0b0a6366c9d4..ee266620b06c 100644 --- a/kernel/time/Makefile +++ b/kernel/time/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | obj-y += timekeeping.o ntp.o clocksource.o jiffies.o timer_list.o timecompare.o | 1 | obj-y += timekeeping.o ntp.o clocksource.o jiffies.o timer_list.o timecompare.o timeconv.o |
2 | 2 | ||
3 | obj-$(CONFIG_GENERIC_CLOCKEVENTS_BUILD) += clockevents.o | 3 | obj-$(CONFIG_GENERIC_CLOCKEVENTS_BUILD) += clockevents.o |
4 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o | 4 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o |
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index 7466cb811251..5e18c6ab2c6a 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
@@ -21,7 +21,6 @@ | |||
21 | * | 21 | * |
22 | * TODO WishList: | 22 | * TODO WishList: |
23 | * o Allow clocksource drivers to be unregistered | 23 | * o Allow clocksource drivers to be unregistered |
24 | * o get rid of clocksource_jiffies extern | ||
25 | */ | 24 | */ |
26 | 25 | ||
27 | #include <linux/clocksource.h> | 26 | #include <linux/clocksource.h> |
@@ -30,6 +29,7 @@ | |||
30 | #include <linux/module.h> | 29 | #include <linux/module.h> |
31 | #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */ | 30 | #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */ |
32 | #include <linux/tick.h> | 31 | #include <linux/tick.h> |
32 | #include <linux/kthread.h> | ||
33 | 33 | ||
34 | void timecounter_init(struct timecounter *tc, | 34 | void timecounter_init(struct timecounter *tc, |
35 | const struct cyclecounter *cc, | 35 | const struct cyclecounter *cc, |
@@ -107,50 +107,35 @@ u64 timecounter_cyc2time(struct timecounter *tc, | |||
107 | } | 107 | } |
108 | EXPORT_SYMBOL(timecounter_cyc2time); | 108 | EXPORT_SYMBOL(timecounter_cyc2time); |
109 | 109 | ||
110 | /* XXX - Would like a better way for initializing curr_clocksource */ | ||
111 | extern struct clocksource clocksource_jiffies; | ||
112 | |||
113 | /*[Clocksource internal variables]--------- | 110 | /*[Clocksource internal variables]--------- |
114 | * curr_clocksource: | 111 | * curr_clocksource: |
115 | * currently selected clocksource. Initialized to clocksource_jiffies. | 112 | * currently selected clocksource. |
116 | * next_clocksource: | ||
117 | * pending next selected clocksource. | ||
118 | * clocksource_list: | 113 | * clocksource_list: |
119 | * linked list with the registered clocksources | 114 | * linked list with the registered clocksources |
120 | * clocksource_lock: | 115 | * clocksource_mutex: |
121 | * protects manipulations to curr_clocksource and next_clocksource | 116 | * protects manipulations to curr_clocksource and the clocksource_list |
122 | * and the clocksource_list | ||
123 | * override_name: | 117 | * override_name: |
124 | * Name of the user-specified clocksource. | 118 | * Name of the user-specified clocksource. |
125 | */ | 119 | */ |
126 | static struct clocksource *curr_clocksource = &clocksource_jiffies; | 120 | static struct clocksource *curr_clocksource; |
127 | static struct clocksource *next_clocksource; | ||
128 | static struct clocksource *clocksource_override; | ||
129 | static LIST_HEAD(clocksource_list); | 121 | static LIST_HEAD(clocksource_list); |
130 | static DEFINE_SPINLOCK(clocksource_lock); | 122 | static DEFINE_MUTEX(clocksource_mutex); |
131 | static char override_name[32]; | 123 | static char override_name[32]; |
132 | static int finished_booting; | 124 | static int finished_booting; |
133 | 125 | ||
134 | /* clocksource_done_booting - Called near the end of core bootup | ||
135 | * | ||
136 | * Hack to avoid lots of clocksource churn at boot time. | ||
137 | * We use fs_initcall because we want this to start before | ||
138 | * device_initcall but after subsys_initcall. | ||
139 | */ | ||
140 | static int __init clocksource_done_booting(void) | ||
141 | { | ||
142 | finished_booting = 1; | ||
143 | return 0; | ||
144 | } | ||
145 | fs_initcall(clocksource_done_booting); | ||
146 | |||
147 | #ifdef CONFIG_CLOCKSOURCE_WATCHDOG | 126 | #ifdef CONFIG_CLOCKSOURCE_WATCHDOG |
127 | static void clocksource_watchdog_work(struct work_struct *work); | ||
128 | |||
148 | static LIST_HEAD(watchdog_list); | 129 | static LIST_HEAD(watchdog_list); |
149 | static struct clocksource *watchdog; | 130 | static struct clocksource *watchdog; |
150 | static struct timer_list watchdog_timer; | 131 | static struct timer_list watchdog_timer; |
132 | static DECLARE_WORK(watchdog_work, clocksource_watchdog_work); | ||
151 | static DEFINE_SPINLOCK(watchdog_lock); | 133 | static DEFINE_SPINLOCK(watchdog_lock); |
152 | static cycle_t watchdog_last; | 134 | static cycle_t watchdog_last; |
153 | static unsigned long watchdog_resumed; | 135 | static int watchdog_running; |
136 | |||
137 | static int clocksource_watchdog_kthread(void *data); | ||
138 | static void __clocksource_change_rating(struct clocksource *cs, int rating); | ||
154 | 139 | ||
155 | /* | 140 | /* |
156 | * Interval: 0.5sec Threshold: 0.0625s | 141 | * Interval: 0.5sec Threshold: 0.0625s |
@@ -158,135 +143,249 @@ static unsigned long watchdog_resumed; | |||
158 | #define WATCHDOG_INTERVAL (HZ >> 1) | 143 | #define WATCHDOG_INTERVAL (HZ >> 1) |
159 | #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4) | 144 | #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4) |
160 | 145 | ||
161 | static void clocksource_ratewd(struct clocksource *cs, int64_t delta) | 146 | static void clocksource_watchdog_work(struct work_struct *work) |
162 | { | 147 | { |
163 | if (delta > -WATCHDOG_THRESHOLD && delta < WATCHDOG_THRESHOLD) | 148 | /* |
164 | return; | 149 | * If kthread_run fails the next watchdog scan over the |
150 | * watchdog_list will find the unstable clock again. | ||
151 | */ | ||
152 | kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog"); | ||
153 | } | ||
154 | |||
155 | static void __clocksource_unstable(struct clocksource *cs) | ||
156 | { | ||
157 | cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG); | ||
158 | cs->flags |= CLOCK_SOURCE_UNSTABLE; | ||
159 | if (finished_booting) | ||
160 | schedule_work(&watchdog_work); | ||
161 | } | ||
165 | 162 | ||
163 | static void clocksource_unstable(struct clocksource *cs, int64_t delta) | ||
164 | { | ||
166 | printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n", | 165 | printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n", |
167 | cs->name, delta); | 166 | cs->name, delta); |
168 | cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG); | 167 | __clocksource_unstable(cs); |
169 | clocksource_change_rating(cs, 0); | 168 | } |
170 | list_del(&cs->wd_list); | 169 | |
170 | /** | ||
171 | * clocksource_mark_unstable - mark clocksource unstable via watchdog | ||
172 | * @cs: clocksource to be marked unstable | ||
173 | * | ||
174 | * This function is called instead of clocksource_change_rating from | ||
175 | * cpu hotplug code to avoid a deadlock between the clocksource mutex | ||
176 | * and the cpu hotplug mutex. It defers the update of the clocksource | ||
177 | * to the watchdog thread. | ||
178 | */ | ||
179 | void clocksource_mark_unstable(struct clocksource *cs) | ||
180 | { | ||
181 | unsigned long flags; | ||
182 | |||
183 | spin_lock_irqsave(&watchdog_lock, flags); | ||
184 | if (!(cs->flags & CLOCK_SOURCE_UNSTABLE)) { | ||
185 | if (list_empty(&cs->wd_list)) | ||
186 | list_add(&cs->wd_list, &watchdog_list); | ||
187 | __clocksource_unstable(cs); | ||
188 | } | ||
189 | spin_unlock_irqrestore(&watchdog_lock, flags); | ||
171 | } | 190 | } |
172 | 191 | ||
173 | static void clocksource_watchdog(unsigned long data) | 192 | static void clocksource_watchdog(unsigned long data) |
174 | { | 193 | { |
175 | struct clocksource *cs, *tmp; | 194 | struct clocksource *cs; |
176 | cycle_t csnow, wdnow; | 195 | cycle_t csnow, wdnow; |
177 | int64_t wd_nsec, cs_nsec; | 196 | int64_t wd_nsec, cs_nsec; |
178 | int resumed; | 197 | int next_cpu; |
179 | 198 | ||
180 | spin_lock(&watchdog_lock); | 199 | spin_lock(&watchdog_lock); |
181 | 200 | if (!watchdog_running) | |
182 | resumed = test_and_clear_bit(0, &watchdog_resumed); | 201 | goto out; |
183 | 202 | ||
184 | wdnow = watchdog->read(watchdog); | 203 | wdnow = watchdog->read(watchdog); |
185 | wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask); | 204 | wd_nsec = clocksource_cyc2ns((wdnow - watchdog_last) & watchdog->mask, |
205 | watchdog->mult, watchdog->shift); | ||
186 | watchdog_last = wdnow; | 206 | watchdog_last = wdnow; |
187 | 207 | ||
188 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) { | 208 | list_for_each_entry(cs, &watchdog_list, wd_list) { |
189 | csnow = cs->read(cs); | ||
190 | 209 | ||
191 | if (unlikely(resumed)) { | 210 | /* Clocksource already marked unstable? */ |
192 | cs->wd_last = csnow; | 211 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { |
212 | if (finished_booting) | ||
213 | schedule_work(&watchdog_work); | ||
193 | continue; | 214 | continue; |
194 | } | 215 | } |
195 | 216 | ||
196 | /* Initialized ? */ | 217 | csnow = cs->read(cs); |
218 | |||
219 | /* Clocksource initialized ? */ | ||
197 | if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) { | 220 | if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) { |
198 | if ((cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && | ||
199 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { | ||
200 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; | ||
201 | /* | ||
202 | * We just marked the clocksource as | ||
203 | * highres-capable, notify the rest of the | ||
204 | * system as well so that we transition | ||
205 | * into high-res mode: | ||
206 | */ | ||
207 | tick_clock_notify(); | ||
208 | } | ||
209 | cs->flags |= CLOCK_SOURCE_WATCHDOG; | 221 | cs->flags |= CLOCK_SOURCE_WATCHDOG; |
210 | cs->wd_last = csnow; | 222 | cs->wd_last = csnow; |
211 | } else { | 223 | continue; |
212 | cs_nsec = cyc2ns(cs, (csnow - cs->wd_last) & cs->mask); | ||
213 | cs->wd_last = csnow; | ||
214 | /* Check the delta. Might remove from the list ! */ | ||
215 | clocksource_ratewd(cs, cs_nsec - wd_nsec); | ||
216 | } | 224 | } |
217 | } | ||
218 | 225 | ||
219 | if (!list_empty(&watchdog_list)) { | 226 | /* Check the deviation from the watchdog clocksource. */ |
220 | /* | 227 | cs_nsec = clocksource_cyc2ns((csnow - cs->wd_last) & |
221 | * Cycle through CPUs to check if the CPUs stay | 228 | cs->mask, cs->mult, cs->shift); |
222 | * synchronized to each other. | 229 | cs->wd_last = csnow; |
223 | */ | 230 | if (abs(cs_nsec - wd_nsec) > WATCHDOG_THRESHOLD) { |
224 | int next_cpu = cpumask_next(raw_smp_processor_id(), | 231 | clocksource_unstable(cs, cs_nsec - wd_nsec); |
225 | cpu_online_mask); | 232 | continue; |
233 | } | ||
226 | 234 | ||
227 | if (next_cpu >= nr_cpu_ids) | 235 | if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && |
228 | next_cpu = cpumask_first(cpu_online_mask); | 236 | (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && |
229 | watchdog_timer.expires += WATCHDOG_INTERVAL; | 237 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { |
230 | add_timer_on(&watchdog_timer, next_cpu); | 238 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
239 | /* | ||
240 | * We just marked the clocksource as highres-capable, | ||
241 | * notify the rest of the system as well so that we | ||
242 | * transition into high-res mode: | ||
243 | */ | ||
244 | tick_clock_notify(); | ||
245 | } | ||
231 | } | 246 | } |
247 | |||
248 | /* | ||
249 | * Cycle through CPUs to check if the CPUs stay synchronized | ||
250 | * to each other. | ||
251 | */ | ||
252 | next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask); | ||
253 | if (next_cpu >= nr_cpu_ids) | ||
254 | next_cpu = cpumask_first(cpu_online_mask); | ||
255 | watchdog_timer.expires += WATCHDOG_INTERVAL; | ||
256 | add_timer_on(&watchdog_timer, next_cpu); | ||
257 | out: | ||
232 | spin_unlock(&watchdog_lock); | 258 | spin_unlock(&watchdog_lock); |
233 | } | 259 | } |
260 | |||
261 | static inline void clocksource_start_watchdog(void) | ||
262 | { | ||
263 | if (watchdog_running || !watchdog || list_empty(&watchdog_list)) | ||
264 | return; | ||
265 | init_timer(&watchdog_timer); | ||
266 | watchdog_timer.function = clocksource_watchdog; | ||
267 | watchdog_last = watchdog->read(watchdog); | ||
268 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; | ||
269 | add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask)); | ||
270 | watchdog_running = 1; | ||
271 | } | ||
272 | |||
273 | static inline void clocksource_stop_watchdog(void) | ||
274 | { | ||
275 | if (!watchdog_running || (watchdog && !list_empty(&watchdog_list))) | ||
276 | return; | ||
277 | del_timer(&watchdog_timer); | ||
278 | watchdog_running = 0; | ||
279 | } | ||
280 | |||
281 | static inline void clocksource_reset_watchdog(void) | ||
282 | { | ||
283 | struct clocksource *cs; | ||
284 | |||
285 | list_for_each_entry(cs, &watchdog_list, wd_list) | ||
286 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; | ||
287 | } | ||
288 | |||
234 | static void clocksource_resume_watchdog(void) | 289 | static void clocksource_resume_watchdog(void) |
235 | { | 290 | { |
236 | set_bit(0, &watchdog_resumed); | 291 | unsigned long flags; |
292 | |||
293 | spin_lock_irqsave(&watchdog_lock, flags); | ||
294 | clocksource_reset_watchdog(); | ||
295 | spin_unlock_irqrestore(&watchdog_lock, flags); | ||
237 | } | 296 | } |
238 | 297 | ||
239 | static void clocksource_check_watchdog(struct clocksource *cs) | 298 | static void clocksource_enqueue_watchdog(struct clocksource *cs) |
240 | { | 299 | { |
241 | struct clocksource *cse; | ||
242 | unsigned long flags; | 300 | unsigned long flags; |
243 | 301 | ||
244 | spin_lock_irqsave(&watchdog_lock, flags); | 302 | spin_lock_irqsave(&watchdog_lock, flags); |
245 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { | 303 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { |
246 | int started = !list_empty(&watchdog_list); | 304 | /* cs is a clocksource to be watched. */ |
247 | |||
248 | list_add(&cs->wd_list, &watchdog_list); | 305 | list_add(&cs->wd_list, &watchdog_list); |
249 | if (!started && watchdog) { | 306 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; |
250 | watchdog_last = watchdog->read(watchdog); | ||
251 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; | ||
252 | add_timer_on(&watchdog_timer, | ||
253 | cpumask_first(cpu_online_mask)); | ||
254 | } | ||
255 | } else { | 307 | } else { |
308 | /* cs is a watchdog. */ | ||
256 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) | 309 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
257 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; | 310 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
258 | 311 | /* Pick the best watchdog. */ | |
259 | if (!watchdog || cs->rating > watchdog->rating) { | 312 | if (!watchdog || cs->rating > watchdog->rating) { |
260 | if (watchdog) | ||
261 | del_timer(&watchdog_timer); | ||
262 | watchdog = cs; | 313 | watchdog = cs; |
263 | init_timer(&watchdog_timer); | ||
264 | watchdog_timer.function = clocksource_watchdog; | ||
265 | |||
266 | /* Reset watchdog cycles */ | 314 | /* Reset watchdog cycles */ |
267 | list_for_each_entry(cse, &watchdog_list, wd_list) | 315 | clocksource_reset_watchdog(); |
268 | cse->flags &= ~CLOCK_SOURCE_WATCHDOG; | 316 | } |
269 | /* Start if list is not empty */ | 317 | } |
270 | if (!list_empty(&watchdog_list)) { | 318 | /* Check if the watchdog timer needs to be started. */ |
271 | watchdog_last = watchdog->read(watchdog); | 319 | clocksource_start_watchdog(); |
272 | watchdog_timer.expires = | 320 | spin_unlock_irqrestore(&watchdog_lock, flags); |
273 | jiffies + WATCHDOG_INTERVAL; | 321 | } |
274 | add_timer_on(&watchdog_timer, | 322 | |
275 | cpumask_first(cpu_online_mask)); | 323 | static void clocksource_dequeue_watchdog(struct clocksource *cs) |
276 | } | 324 | { |
325 | struct clocksource *tmp; | ||
326 | unsigned long flags; | ||
327 | |||
328 | spin_lock_irqsave(&watchdog_lock, flags); | ||
329 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { | ||
330 | /* cs is a watched clocksource. */ | ||
331 | list_del_init(&cs->wd_list); | ||
332 | } else if (cs == watchdog) { | ||
333 | /* Reset watchdog cycles */ | ||
334 | clocksource_reset_watchdog(); | ||
335 | /* Current watchdog is removed. Find an alternative. */ | ||
336 | watchdog = NULL; | ||
337 | list_for_each_entry(tmp, &clocksource_list, list) { | ||
338 | if (tmp == cs || tmp->flags & CLOCK_SOURCE_MUST_VERIFY) | ||
339 | continue; | ||
340 | if (!watchdog || tmp->rating > watchdog->rating) | ||
341 | watchdog = tmp; | ||
277 | } | 342 | } |
278 | } | 343 | } |
344 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; | ||
345 | /* Check if the watchdog timer needs to be stopped. */ | ||
346 | clocksource_stop_watchdog(); | ||
279 | spin_unlock_irqrestore(&watchdog_lock, flags); | 347 | spin_unlock_irqrestore(&watchdog_lock, flags); |
280 | } | 348 | } |
281 | #else | 349 | |
282 | static void clocksource_check_watchdog(struct clocksource *cs) | 350 | static int clocksource_watchdog_kthread(void *data) |
351 | { | ||
352 | struct clocksource *cs, *tmp; | ||
353 | unsigned long flags; | ||
354 | LIST_HEAD(unstable); | ||
355 | |||
356 | mutex_lock(&clocksource_mutex); | ||
357 | spin_lock_irqsave(&watchdog_lock, flags); | ||
358 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) | ||
359 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { | ||
360 | list_del_init(&cs->wd_list); | ||
361 | list_add(&cs->wd_list, &unstable); | ||
362 | } | ||
363 | /* Check if the watchdog timer needs to be stopped. */ | ||
364 | clocksource_stop_watchdog(); | ||
365 | spin_unlock_irqrestore(&watchdog_lock, flags); | ||
366 | |||
367 | /* Needs to be done outside of watchdog lock */ | ||
368 | list_for_each_entry_safe(cs, tmp, &unstable, wd_list) { | ||
369 | list_del_init(&cs->wd_list); | ||
370 | __clocksource_change_rating(cs, 0); | ||
371 | } | ||
372 | mutex_unlock(&clocksource_mutex); | ||
373 | return 0; | ||
374 | } | ||
375 | |||
376 | #else /* CONFIG_CLOCKSOURCE_WATCHDOG */ | ||
377 | |||
378 | static void clocksource_enqueue_watchdog(struct clocksource *cs) | ||
283 | { | 379 | { |
284 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) | 380 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
285 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; | 381 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
286 | } | 382 | } |
287 | 383 | ||
384 | static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { } | ||
288 | static inline void clocksource_resume_watchdog(void) { } | 385 | static inline void clocksource_resume_watchdog(void) { } |
289 | #endif | 386 | static inline int clocksource_watchdog_kthread(void *data) { return 0; } |
387 | |||
388 | #endif /* CONFIG_CLOCKSOURCE_WATCHDOG */ | ||
290 | 389 | ||
291 | /** | 390 | /** |
292 | * clocksource_resume - resume the clocksource(s) | 391 | * clocksource_resume - resume the clocksource(s) |
@@ -294,18 +393,12 @@ static inline void clocksource_resume_watchdog(void) { } | |||
294 | void clocksource_resume(void) | 393 | void clocksource_resume(void) |
295 | { | 394 | { |
296 | struct clocksource *cs; | 395 | struct clocksource *cs; |
297 | unsigned long flags; | ||
298 | 396 | ||
299 | spin_lock_irqsave(&clocksource_lock, flags); | 397 | list_for_each_entry(cs, &clocksource_list, list) |
300 | |||
301 | list_for_each_entry(cs, &clocksource_list, list) { | ||
302 | if (cs->resume) | 398 | if (cs->resume) |
303 | cs->resume(); | 399 | cs->resume(); |
304 | } | ||
305 | 400 | ||
306 | clocksource_resume_watchdog(); | 401 | clocksource_resume_watchdog(); |
307 | |||
308 | spin_unlock_irqrestore(&clocksource_lock, flags); | ||
309 | } | 402 | } |
310 | 403 | ||
311 | /** | 404 | /** |
@@ -320,75 +413,94 @@ void clocksource_touch_watchdog(void) | |||
320 | clocksource_resume_watchdog(); | 413 | clocksource_resume_watchdog(); |
321 | } | 414 | } |
322 | 415 | ||
416 | #ifdef CONFIG_GENERIC_TIME | ||
417 | |||
323 | /** | 418 | /** |
324 | * clocksource_get_next - Returns the selected clocksource | 419 | * clocksource_select - Select the best clocksource available |
325 | * | 420 | * |
421 | * Private function. Must hold clocksource_mutex when called. | ||
422 | * | ||
423 | * Select the clocksource with the best rating, or the clocksource, | ||
424 | * which is selected by userspace override. | ||
326 | */ | 425 | */ |
327 | struct clocksource *clocksource_get_next(void) | 426 | static void clocksource_select(void) |
328 | { | 427 | { |
329 | unsigned long flags; | 428 | struct clocksource *best, *cs; |
330 | 429 | ||
331 | spin_lock_irqsave(&clocksource_lock, flags); | 430 | if (!finished_booting || list_empty(&clocksource_list)) |
332 | if (next_clocksource && finished_booting) { | 431 | return; |
333 | curr_clocksource = next_clocksource; | 432 | /* First clocksource on the list has the best rating. */ |
334 | next_clocksource = NULL; | 433 | best = list_first_entry(&clocksource_list, struct clocksource, list); |
434 | /* Check for the override clocksource. */ | ||
435 | list_for_each_entry(cs, &clocksource_list, list) { | ||
436 | if (strcmp(cs->name, override_name) != 0) | ||
437 | continue; | ||
438 | /* | ||
439 | * Check to make sure we don't switch to a non-highres | ||
440 | * capable clocksource if the tick code is in oneshot | ||
441 | * mode (highres or nohz) | ||
442 | */ | ||
443 | if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && | ||
444 | tick_oneshot_mode_active()) { | ||
445 | /* Override clocksource cannot be used. */ | ||
446 | printk(KERN_WARNING "Override clocksource %s is not " | ||
447 | "HRT compatible. Cannot switch while in " | ||
448 | "HRT/NOHZ mode\n", cs->name); | ||
449 | override_name[0] = 0; | ||
450 | } else | ||
451 | /* Override clocksource can be used. */ | ||
452 | best = cs; | ||
453 | break; | ||
454 | } | ||
455 | if (curr_clocksource != best) { | ||
456 | printk(KERN_INFO "Switching to clocksource %s\n", best->name); | ||
457 | curr_clocksource = best; | ||
458 | timekeeping_notify(curr_clocksource); | ||
335 | } | 459 | } |
336 | spin_unlock_irqrestore(&clocksource_lock, flags); | ||
337 | |||
338 | return curr_clocksource; | ||
339 | } | 460 | } |
340 | 461 | ||
341 | /** | 462 | #else /* CONFIG_GENERIC_TIME */ |
342 | * select_clocksource - Selects the best registered clocksource. | 463 | |
343 | * | 464 | static inline void clocksource_select(void) { } |
344 | * Private function. Must hold clocksource_lock when called. | 465 | |
466 | #endif | ||
467 | |||
468 | /* | ||
469 | * clocksource_done_booting - Called near the end of core bootup | ||
345 | * | 470 | * |
346 | * Select the clocksource with the best rating, or the clocksource, | 471 | * Hack to avoid lots of clocksource churn at boot time. |
347 | * which is selected by userspace override. | 472 | * We use fs_initcall because we want this to start before |
473 | * device_initcall but after subsys_initcall. | ||
348 | */ | 474 | */ |
349 | static struct clocksource *select_clocksource(void) | 475 | static int __init clocksource_done_booting(void) |
350 | { | 476 | { |
351 | struct clocksource *next; | 477 | finished_booting = 1; |
352 | |||
353 | if (list_empty(&clocksource_list)) | ||
354 | return NULL; | ||
355 | |||
356 | if (clocksource_override) | ||
357 | next = clocksource_override; | ||
358 | else | ||
359 | next = list_entry(clocksource_list.next, struct clocksource, | ||
360 | list); | ||
361 | 478 | ||
362 | if (next == curr_clocksource) | 479 | /* |
363 | return NULL; | 480 | * Run the watchdog first to eliminate unstable clock sources |
481 | */ | ||
482 | clocksource_watchdog_kthread(NULL); | ||
364 | 483 | ||
365 | return next; | 484 | mutex_lock(&clocksource_mutex); |
485 | clocksource_select(); | ||
486 | mutex_unlock(&clocksource_mutex); | ||
487 | return 0; | ||
366 | } | 488 | } |
489 | fs_initcall(clocksource_done_booting); | ||
367 | 490 | ||
368 | /* | 491 | /* |
369 | * Enqueue the clocksource sorted by rating | 492 | * Enqueue the clocksource sorted by rating |
370 | */ | 493 | */ |
371 | static int clocksource_enqueue(struct clocksource *c) | 494 | static void clocksource_enqueue(struct clocksource *cs) |
372 | { | 495 | { |
373 | struct list_head *tmp, *entry = &clocksource_list; | 496 | struct list_head *entry = &clocksource_list; |
497 | struct clocksource *tmp; | ||
374 | 498 | ||
375 | list_for_each(tmp, &clocksource_list) { | 499 | list_for_each_entry(tmp, &clocksource_list, list) |
376 | struct clocksource *cs; | ||
377 | |||
378 | cs = list_entry(tmp, struct clocksource, list); | ||
379 | if (cs == c) | ||
380 | return -EBUSY; | ||
381 | /* Keep track of the place, where to insert */ | 500 | /* Keep track of the place, where to insert */ |
382 | if (cs->rating >= c->rating) | 501 | if (tmp->rating >= cs->rating) |
383 | entry = tmp; | 502 | entry = &tmp->list; |
384 | } | 503 | list_add(&cs->list, entry); |
385 | list_add(&c->list, entry); | ||
386 | |||
387 | if (strlen(c->name) == strlen(override_name) && | ||
388 | !strcmp(c->name, override_name)) | ||
389 | clocksource_override = c; | ||
390 | |||
391 | return 0; | ||
392 | } | 504 | } |
393 | 505 | ||
394 | /** | 506 | /** |
@@ -397,52 +509,48 @@ static int clocksource_enqueue(struct clocksource *c) | |||
397 | * | 509 | * |
398 | * Returns -EBUSY if registration fails, zero otherwise. | 510 | * Returns -EBUSY if registration fails, zero otherwise. |
399 | */ | 511 | */ |
400 | int clocksource_register(struct clocksource *c) | 512 | int clocksource_register(struct clocksource *cs) |
401 | { | 513 | { |
402 | unsigned long flags; | 514 | mutex_lock(&clocksource_mutex); |
403 | int ret; | 515 | clocksource_enqueue(cs); |
404 | 516 | clocksource_select(); | |
405 | spin_lock_irqsave(&clocksource_lock, flags); | 517 | clocksource_enqueue_watchdog(cs); |
406 | ret = clocksource_enqueue(c); | 518 | mutex_unlock(&clocksource_mutex); |
407 | if (!ret) | 519 | return 0; |
408 | next_clocksource = select_clocksource(); | ||
409 | spin_unlock_irqrestore(&clocksource_lock, flags); | ||
410 | if (!ret) | ||
411 | clocksource_check_watchdog(c); | ||
412 | return ret; | ||
413 | } | 520 | } |
414 | EXPORT_SYMBOL(clocksource_register); | 521 | EXPORT_SYMBOL(clocksource_register); |
415 | 522 | ||
523 | static void __clocksource_change_rating(struct clocksource *cs, int rating) | ||
524 | { | ||
525 | list_del(&cs->list); | ||
526 | cs->rating = rating; | ||
527 | clocksource_enqueue(cs); | ||
528 | clocksource_select(); | ||
529 | } | ||
530 | |||
416 | /** | 531 | /** |
417 | * clocksource_change_rating - Change the rating of a registered clocksource | 532 | * clocksource_change_rating - Change the rating of a registered clocksource |
418 | * | ||
419 | */ | 533 | */ |
420 | void clocksource_change_rating(struct clocksource *cs, int rating) | 534 | void clocksource_change_rating(struct clocksource *cs, int rating) |
421 | { | 535 | { |
422 | unsigned long flags; | 536 | mutex_lock(&clocksource_mutex); |
423 | 537 | __clocksource_change_rating(cs, rating); | |
424 | spin_lock_irqsave(&clocksource_lock, flags); | 538 | mutex_unlock(&clocksource_mutex); |
425 | list_del(&cs->list); | ||
426 | cs->rating = rating; | ||
427 | clocksource_enqueue(cs); | ||
428 | next_clocksource = select_clocksource(); | ||
429 | spin_unlock_irqrestore(&clocksource_lock, flags); | ||
430 | } | 539 | } |
540 | EXPORT_SYMBOL(clocksource_change_rating); | ||
431 | 541 | ||
432 | /** | 542 | /** |
433 | * clocksource_unregister - remove a registered clocksource | 543 | * clocksource_unregister - remove a registered clocksource |
434 | */ | 544 | */ |
435 | void clocksource_unregister(struct clocksource *cs) | 545 | void clocksource_unregister(struct clocksource *cs) |
436 | { | 546 | { |
437 | unsigned long flags; | 547 | mutex_lock(&clocksource_mutex); |
438 | 548 | clocksource_dequeue_watchdog(cs); | |
439 | spin_lock_irqsave(&clocksource_lock, flags); | ||
440 | list_del(&cs->list); | 549 | list_del(&cs->list); |
441 | if (clocksource_override == cs) | 550 | clocksource_select(); |
442 | clocksource_override = NULL; | 551 | mutex_unlock(&clocksource_mutex); |
443 | next_clocksource = select_clocksource(); | ||
444 | spin_unlock_irqrestore(&clocksource_lock, flags); | ||
445 | } | 552 | } |
553 | EXPORT_SYMBOL(clocksource_unregister); | ||
446 | 554 | ||
447 | #ifdef CONFIG_SYSFS | 555 | #ifdef CONFIG_SYSFS |
448 | /** | 556 | /** |
@@ -458,9 +566,9 @@ sysfs_show_current_clocksources(struct sys_device *dev, | |||
458 | { | 566 | { |
459 | ssize_t count = 0; | 567 | ssize_t count = 0; |
460 | 568 | ||
461 | spin_lock_irq(&clocksource_lock); | 569 | mutex_lock(&clocksource_mutex); |
462 | count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name); | 570 | count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name); |
463 | spin_unlock_irq(&clocksource_lock); | 571 | mutex_unlock(&clocksource_mutex); |
464 | 572 | ||
465 | return count; | 573 | return count; |
466 | } | 574 | } |
@@ -478,9 +586,7 @@ static ssize_t sysfs_override_clocksource(struct sys_device *dev, | |||
478 | struct sysdev_attribute *attr, | 586 | struct sysdev_attribute *attr, |
479 | const char *buf, size_t count) | 587 | const char *buf, size_t count) |
480 | { | 588 | { |
481 | struct clocksource *ovr = NULL; | ||
482 | size_t ret = count; | 589 | size_t ret = count; |
483 | int len; | ||
484 | 590 | ||
485 | /* strings from sysfs write are not 0 terminated! */ | 591 | /* strings from sysfs write are not 0 terminated! */ |
486 | if (count >= sizeof(override_name)) | 592 | if (count >= sizeof(override_name)) |
@@ -490,44 +596,14 @@ static ssize_t sysfs_override_clocksource(struct sys_device *dev, | |||
490 | if (buf[count-1] == '\n') | 596 | if (buf[count-1] == '\n') |
491 | count--; | 597 | count--; |
492 | 598 | ||
493 | spin_lock_irq(&clocksource_lock); | 599 | mutex_lock(&clocksource_mutex); |
494 | 600 | ||
495 | if (count > 0) | 601 | if (count > 0) |
496 | memcpy(override_name, buf, count); | 602 | memcpy(override_name, buf, count); |
497 | override_name[count] = 0; | 603 | override_name[count] = 0; |
604 | clocksource_select(); | ||
498 | 605 | ||
499 | len = strlen(override_name); | 606 | mutex_unlock(&clocksource_mutex); |
500 | if (len) { | ||
501 | struct clocksource *cs; | ||
502 | |||
503 | ovr = clocksource_override; | ||
504 | /* try to select it: */ | ||
505 | list_for_each_entry(cs, &clocksource_list, list) { | ||
506 | if (strlen(cs->name) == len && | ||
507 | !strcmp(cs->name, override_name)) | ||
508 | ovr = cs; | ||
509 | } | ||
510 | } | ||
511 | |||
512 | /* | ||
513 | * Check to make sure we don't switch to a non-highres capable | ||
514 | * clocksource if the tick code is in oneshot mode (highres or nohz) | ||
515 | */ | ||
516 | if (tick_oneshot_mode_active() && ovr && | ||
517 | !(ovr->flags & CLOCK_SOURCE_VALID_FOR_HRES)) { | ||
518 | printk(KERN_WARNING "%s clocksource is not HRT compatible. " | ||
519 | "Cannot switch while in HRT/NOHZ mode\n", ovr->name); | ||
520 | ovr = NULL; | ||
521 | override_name[0] = 0; | ||
522 | } | ||
523 | |||
524 | /* Reselect, when the override name has changed */ | ||
525 | if (ovr != clocksource_override) { | ||
526 | clocksource_override = ovr; | ||
527 | next_clocksource = select_clocksource(); | ||
528 | } | ||
529 | |||
530 | spin_unlock_irq(&clocksource_lock); | ||
531 | 607 | ||
532 | return ret; | 608 | return ret; |
533 | } | 609 | } |
@@ -547,7 +623,7 @@ sysfs_show_available_clocksources(struct sys_device *dev, | |||
547 | struct clocksource *src; | 623 | struct clocksource *src; |
548 | ssize_t count = 0; | 624 | ssize_t count = 0; |
549 | 625 | ||
550 | spin_lock_irq(&clocksource_lock); | 626 | mutex_lock(&clocksource_mutex); |
551 | list_for_each_entry(src, &clocksource_list, list) { | 627 | list_for_each_entry(src, &clocksource_list, list) { |
552 | /* | 628 | /* |
553 | * Don't show non-HRES clocksource if the tick code is | 629 | * Don't show non-HRES clocksource if the tick code is |
@@ -559,7 +635,7 @@ sysfs_show_available_clocksources(struct sys_device *dev, | |||
559 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), | 635 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), |
560 | "%s ", src->name); | 636 | "%s ", src->name); |
561 | } | 637 | } |
562 | spin_unlock_irq(&clocksource_lock); | 638 | mutex_unlock(&clocksource_mutex); |
563 | 639 | ||
564 | count += snprintf(buf + count, | 640 | count += snprintf(buf + count, |
565 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n"); | 641 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n"); |
@@ -614,11 +690,10 @@ device_initcall(init_clocksource_sysfs); | |||
614 | */ | 690 | */ |
615 | static int __init boot_override_clocksource(char* str) | 691 | static int __init boot_override_clocksource(char* str) |
616 | { | 692 | { |
617 | unsigned long flags; | 693 | mutex_lock(&clocksource_mutex); |
618 | spin_lock_irqsave(&clocksource_lock, flags); | ||
619 | if (str) | 694 | if (str) |
620 | strlcpy(override_name, str, sizeof(override_name)); | 695 | strlcpy(override_name, str, sizeof(override_name)); |
621 | spin_unlock_irqrestore(&clocksource_lock, flags); | 696 | mutex_unlock(&clocksource_mutex); |
622 | return 1; | 697 | return 1; |
623 | } | 698 | } |
624 | 699 | ||
diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c index c3f6c30816e3..5404a8456909 100644 --- a/kernel/time/jiffies.c +++ b/kernel/time/jiffies.c | |||
@@ -61,7 +61,6 @@ struct clocksource clocksource_jiffies = { | |||
61 | .read = jiffies_read, | 61 | .read = jiffies_read, |
62 | .mask = 0xffffffff, /*32bits*/ | 62 | .mask = 0xffffffff, /*32bits*/ |
63 | .mult = NSEC_PER_JIFFY << JIFFIES_SHIFT, /* details above */ | 63 | .mult = NSEC_PER_JIFFY << JIFFIES_SHIFT, /* details above */ |
64 | .mult_orig = NSEC_PER_JIFFY << JIFFIES_SHIFT, | ||
65 | .shift = JIFFIES_SHIFT, | 64 | .shift = JIFFIES_SHIFT, |
66 | }; | 65 | }; |
67 | 66 | ||
@@ -71,3 +70,8 @@ static int __init init_jiffies_clocksource(void) | |||
71 | } | 70 | } |
72 | 71 | ||
73 | core_initcall(init_jiffies_clocksource); | 72 | core_initcall(init_jiffies_clocksource); |
73 | |||
74 | struct clocksource * __init __weak clocksource_default_clock(void) | ||
75 | { | ||
76 | return &clocksource_jiffies; | ||
77 | } | ||
diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index 7fc64375ff43..4800f933910e 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c | |||
@@ -194,8 +194,7 @@ static enum hrtimer_restart ntp_leap_second(struct hrtimer *timer) | |||
194 | case TIME_OK: | 194 | case TIME_OK: |
195 | break; | 195 | break; |
196 | case TIME_INS: | 196 | case TIME_INS: |
197 | xtime.tv_sec--; | 197 | timekeeping_leap_insert(-1); |
198 | wall_to_monotonic.tv_sec++; | ||
199 | time_state = TIME_OOP; | 198 | time_state = TIME_OOP; |
200 | printk(KERN_NOTICE | 199 | printk(KERN_NOTICE |
201 | "Clock: inserting leap second 23:59:60 UTC\n"); | 200 | "Clock: inserting leap second 23:59:60 UTC\n"); |
@@ -203,9 +202,8 @@ static enum hrtimer_restart ntp_leap_second(struct hrtimer *timer) | |||
203 | res = HRTIMER_RESTART; | 202 | res = HRTIMER_RESTART; |
204 | break; | 203 | break; |
205 | case TIME_DEL: | 204 | case TIME_DEL: |
206 | xtime.tv_sec++; | 205 | timekeeping_leap_insert(1); |
207 | time_tai--; | 206 | time_tai--; |
208 | wall_to_monotonic.tv_sec--; | ||
209 | time_state = TIME_WAIT; | 207 | time_state = TIME_WAIT; |
210 | printk(KERN_NOTICE | 208 | printk(KERN_NOTICE |
211 | "Clock: deleting leap second 23:59:59 UTC\n"); | 209 | "Clock: deleting leap second 23:59:59 UTC\n"); |
@@ -219,7 +217,6 @@ static enum hrtimer_restart ntp_leap_second(struct hrtimer *timer) | |||
219 | time_state = TIME_OK; | 217 | time_state = TIME_OK; |
220 | break; | 218 | break; |
221 | } | 219 | } |
222 | update_vsyscall(&xtime, clock); | ||
223 | 220 | ||
224 | write_sequnlock(&xtime_lock); | 221 | write_sequnlock(&xtime_lock); |
225 | 222 | ||
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index e0f59a21c061..89aed5933ed4 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c | |||
@@ -231,6 +231,13 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
231 | if (!inidle && !ts->inidle) | 231 | if (!inidle && !ts->inidle) |
232 | goto end; | 232 | goto end; |
233 | 233 | ||
234 | /* | ||
235 | * Set ts->inidle unconditionally. Even if the system did not | ||
236 | * switch to NOHZ mode the cpu frequency governers rely on the | ||
237 | * update of the idle time accounting in tick_nohz_start_idle(). | ||
238 | */ | ||
239 | ts->inidle = 1; | ||
240 | |||
234 | now = tick_nohz_start_idle(ts); | 241 | now = tick_nohz_start_idle(ts); |
235 | 242 | ||
236 | /* | 243 | /* |
@@ -248,8 +255,6 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
248 | if (unlikely(ts->nohz_mode == NOHZ_MODE_INACTIVE)) | 255 | if (unlikely(ts->nohz_mode == NOHZ_MODE_INACTIVE)) |
249 | goto end; | 256 | goto end; |
250 | 257 | ||
251 | ts->inidle = 1; | ||
252 | |||
253 | if (need_resched()) | 258 | if (need_resched()) |
254 | goto end; | 259 | goto end; |
255 | 260 | ||
diff --git a/kernel/time/timeconv.c b/kernel/time/timeconv.c new file mode 100644 index 000000000000..86628e755f38 --- /dev/null +++ b/kernel/time/timeconv.c | |||
@@ -0,0 +1,127 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. | ||
3 | * This file is part of the GNU C Library. | ||
4 | * Contributed by Paul Eggert (eggert@twinsun.com). | ||
5 | * | ||
6 | * The GNU C Library is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU Library General Public License as | ||
8 | * published by the Free Software Foundation; either version 2 of the | ||
9 | * License, or (at your option) any later version. | ||
10 | * | ||
11 | * The GNU C Library is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * Library General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU Library General Public | ||
17 | * License along with the GNU C Library; see the file COPYING.LIB. If not, | ||
18 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
19 | * Boston, MA 02111-1307, USA. | ||
20 | */ | ||
21 | |||
22 | /* | ||
23 | * Converts the calendar time to broken-down time representation | ||
24 | * Based on code from glibc-2.6 | ||
25 | * | ||
26 | * 2009-7-14: | ||
27 | * Moved from glibc-2.6 to kernel by Zhaolei<zhaolei@cn.fujitsu.com> | ||
28 | */ | ||
29 | |||
30 | #include <linux/time.h> | ||
31 | #include <linux/module.h> | ||
32 | |||
33 | /* | ||
34 | * Nonzero if YEAR is a leap year (every 4 years, | ||
35 | * except every 100th isn't, and every 400th is). | ||
36 | */ | ||
37 | static int __isleap(long year) | ||
38 | { | ||
39 | return (year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0); | ||
40 | } | ||
41 | |||
42 | /* do a mathdiv for long type */ | ||
43 | static long math_div(long a, long b) | ||
44 | { | ||
45 | return a / b - (a % b < 0); | ||
46 | } | ||
47 | |||
48 | /* How many leap years between y1 and y2, y1 must less or equal to y2 */ | ||
49 | static long leaps_between(long y1, long y2) | ||
50 | { | ||
51 | long leaps1 = math_div(y1 - 1, 4) - math_div(y1 - 1, 100) | ||
52 | + math_div(y1 - 1, 400); | ||
53 | long leaps2 = math_div(y2 - 1, 4) - math_div(y2 - 1, 100) | ||
54 | + math_div(y2 - 1, 400); | ||
55 | return leaps2 - leaps1; | ||
56 | } | ||
57 | |||
58 | /* How many days come before each month (0-12). */ | ||
59 | static const unsigned short __mon_yday[2][13] = { | ||
60 | /* Normal years. */ | ||
61 | {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365}, | ||
62 | /* Leap years. */ | ||
63 | {0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366} | ||
64 | }; | ||
65 | |||
66 | #define SECS_PER_HOUR (60 * 60) | ||
67 | #define SECS_PER_DAY (SECS_PER_HOUR * 24) | ||
68 | |||
69 | /** | ||
70 | * time_to_tm - converts the calendar time to local broken-down time | ||
71 | * | ||
72 | * @totalsecs the number of seconds elapsed since 00:00:00 on January 1, 1970, | ||
73 | * Coordinated Universal Time (UTC). | ||
74 | * @offset offset seconds adding to totalsecs. | ||
75 | * @result pointer to struct tm variable to receive broken-down time | ||
76 | */ | ||
77 | void time_to_tm(time_t totalsecs, int offset, struct tm *result) | ||
78 | { | ||
79 | long days, rem, y; | ||
80 | const unsigned short *ip; | ||
81 | |||
82 | days = totalsecs / SECS_PER_DAY; | ||
83 | rem = totalsecs % SECS_PER_DAY; | ||
84 | rem += offset; | ||
85 | while (rem < 0) { | ||
86 | rem += SECS_PER_DAY; | ||
87 | --days; | ||
88 | } | ||
89 | while (rem >= SECS_PER_DAY) { | ||
90 | rem -= SECS_PER_DAY; | ||
91 | ++days; | ||
92 | } | ||
93 | |||
94 | result->tm_hour = rem / SECS_PER_HOUR; | ||
95 | rem %= SECS_PER_HOUR; | ||
96 | result->tm_min = rem / 60; | ||
97 | result->tm_sec = rem % 60; | ||
98 | |||
99 | /* January 1, 1970 was a Thursday. */ | ||
100 | result->tm_wday = (4 + days) % 7; | ||
101 | if (result->tm_wday < 0) | ||
102 | result->tm_wday += 7; | ||
103 | |||
104 | y = 1970; | ||
105 | |||
106 | while (days < 0 || days >= (__isleap(y) ? 366 : 365)) { | ||
107 | /* Guess a corrected year, assuming 365 days per year. */ | ||
108 | long yg = y + math_div(days, 365); | ||
109 | |||
110 | /* Adjust DAYS and Y to match the guessed year. */ | ||
111 | days -= (yg - y) * 365 + leaps_between(y, yg); | ||
112 | y = yg; | ||
113 | } | ||
114 | |||
115 | result->tm_year = y - 1900; | ||
116 | |||
117 | result->tm_yday = days; | ||
118 | |||
119 | ip = __mon_yday[__isleap(y)]; | ||
120 | for (y = 11; days < ip[y]; y--) | ||
121 | continue; | ||
122 | days -= ip[y]; | ||
123 | |||
124 | result->tm_mon = y; | ||
125 | result->tm_mday = days + 1; | ||
126 | } | ||
127 | EXPORT_SYMBOL(time_to_tm); | ||
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index e8c77d9c633a..c3a4e2907eaa 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -13,12 +13,123 @@ | |||
13 | #include <linux/percpu.h> | 13 | #include <linux/percpu.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
16 | #include <linux/sched.h> | ||
16 | #include <linux/sysdev.h> | 17 | #include <linux/sysdev.h> |
17 | #include <linux/clocksource.h> | 18 | #include <linux/clocksource.h> |
18 | #include <linux/jiffies.h> | 19 | #include <linux/jiffies.h> |
19 | #include <linux/time.h> | 20 | #include <linux/time.h> |
20 | #include <linux/tick.h> | 21 | #include <linux/tick.h> |
22 | #include <linux/stop_machine.h> | ||
23 | |||
24 | /* Structure holding internal timekeeping values. */ | ||
25 | struct timekeeper { | ||
26 | /* Current clocksource used for timekeeping. */ | ||
27 | struct clocksource *clock; | ||
28 | /* The shift value of the current clocksource. */ | ||
29 | int shift; | ||
30 | |||
31 | /* Number of clock cycles in one NTP interval. */ | ||
32 | cycle_t cycle_interval; | ||
33 | /* Number of clock shifted nano seconds in one NTP interval. */ | ||
34 | u64 xtime_interval; | ||
35 | /* Raw nano seconds accumulated per NTP interval. */ | ||
36 | u32 raw_interval; | ||
37 | |||
38 | /* Clock shifted nano seconds remainder not stored in xtime.tv_nsec. */ | ||
39 | u64 xtime_nsec; | ||
40 | /* Difference between accumulated time and NTP time in ntp | ||
41 | * shifted nano seconds. */ | ||
42 | s64 ntp_error; | ||
43 | /* Shift conversion between clock shifted nano seconds and | ||
44 | * ntp shifted nano seconds. */ | ||
45 | int ntp_error_shift; | ||
46 | /* NTP adjusted clock multiplier */ | ||
47 | u32 mult; | ||
48 | }; | ||
49 | |||
50 | struct timekeeper timekeeper; | ||
51 | |||
52 | /** | ||
53 | * timekeeper_setup_internals - Set up internals to use clocksource clock. | ||
54 | * | ||
55 | * @clock: Pointer to clocksource. | ||
56 | * | ||
57 | * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment | ||
58 | * pair and interval request. | ||
59 | * | ||
60 | * Unless you're the timekeeping code, you should not be using this! | ||
61 | */ | ||
62 | static void timekeeper_setup_internals(struct clocksource *clock) | ||
63 | { | ||
64 | cycle_t interval; | ||
65 | u64 tmp; | ||
66 | |||
67 | timekeeper.clock = clock; | ||
68 | clock->cycle_last = clock->read(clock); | ||
21 | 69 | ||
70 | /* Do the ns -> cycle conversion first, using original mult */ | ||
71 | tmp = NTP_INTERVAL_LENGTH; | ||
72 | tmp <<= clock->shift; | ||
73 | tmp += clock->mult/2; | ||
74 | do_div(tmp, clock->mult); | ||
75 | if (tmp == 0) | ||
76 | tmp = 1; | ||
77 | |||
78 | interval = (cycle_t) tmp; | ||
79 | timekeeper.cycle_interval = interval; | ||
80 | |||
81 | /* Go back from cycles -> shifted ns */ | ||
82 | timekeeper.xtime_interval = (u64) interval * clock->mult; | ||
83 | timekeeper.raw_interval = | ||
84 | ((u64) interval * clock->mult) >> clock->shift; | ||
85 | |||
86 | timekeeper.xtime_nsec = 0; | ||
87 | timekeeper.shift = clock->shift; | ||
88 | |||
89 | timekeeper.ntp_error = 0; | ||
90 | timekeeper.ntp_error_shift = NTP_SCALE_SHIFT - clock->shift; | ||
91 | |||
92 | /* | ||
93 | * The timekeeper keeps its own mult values for the currently | ||
94 | * active clocksource. These value will be adjusted via NTP | ||
95 | * to counteract clock drifting. | ||
96 | */ | ||
97 | timekeeper.mult = clock->mult; | ||
98 | } | ||
99 | |||
100 | /* Timekeeper helper functions. */ | ||
101 | static inline s64 timekeeping_get_ns(void) | ||
102 | { | ||
103 | cycle_t cycle_now, cycle_delta; | ||
104 | struct clocksource *clock; | ||
105 | |||
106 | /* read clocksource: */ | ||
107 | clock = timekeeper.clock; | ||
108 | cycle_now = clock->read(clock); | ||
109 | |||
110 | /* calculate the delta since the last update_wall_time: */ | ||
111 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; | ||
112 | |||
113 | /* return delta convert to nanoseconds using ntp adjusted mult. */ | ||
114 | return clocksource_cyc2ns(cycle_delta, timekeeper.mult, | ||
115 | timekeeper.shift); | ||
116 | } | ||
117 | |||
118 | static inline s64 timekeeping_get_ns_raw(void) | ||
119 | { | ||
120 | cycle_t cycle_now, cycle_delta; | ||
121 | struct clocksource *clock; | ||
122 | |||
123 | /* read clocksource: */ | ||
124 | clock = timekeeper.clock; | ||
125 | cycle_now = clock->read(clock); | ||
126 | |||
127 | /* calculate the delta since the last update_wall_time: */ | ||
128 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; | ||
129 | |||
130 | /* return delta convert to nanoseconds using ntp adjusted mult. */ | ||
131 | return clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift); | ||
132 | } | ||
22 | 133 | ||
23 | /* | 134 | /* |
24 | * This read-write spinlock protects us from races in SMP while | 135 | * This read-write spinlock protects us from races in SMP while |
@@ -44,7 +155,12 @@ __cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock); | |||
44 | */ | 155 | */ |
45 | struct timespec xtime __attribute__ ((aligned (16))); | 156 | struct timespec xtime __attribute__ ((aligned (16))); |
46 | struct timespec wall_to_monotonic __attribute__ ((aligned (16))); | 157 | struct timespec wall_to_monotonic __attribute__ ((aligned (16))); |
47 | static unsigned long total_sleep_time; /* seconds */ | 158 | static struct timespec total_sleep_time; |
159 | |||
160 | /* | ||
161 | * The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. | ||
162 | */ | ||
163 | struct timespec raw_time; | ||
48 | 164 | ||
49 | /* flag for if timekeeping is suspended */ | 165 | /* flag for if timekeeping is suspended */ |
50 | int __read_mostly timekeeping_suspended; | 166 | int __read_mostly timekeeping_suspended; |
@@ -56,35 +172,44 @@ void update_xtime_cache(u64 nsec) | |||
56 | timespec_add_ns(&xtime_cache, nsec); | 172 | timespec_add_ns(&xtime_cache, nsec); |
57 | } | 173 | } |
58 | 174 | ||
59 | struct clocksource *clock; | 175 | /* must hold xtime_lock */ |
60 | 176 | void timekeeping_leap_insert(int leapsecond) | |
177 | { | ||
178 | xtime.tv_sec += leapsecond; | ||
179 | wall_to_monotonic.tv_sec -= leapsecond; | ||
180 | update_vsyscall(&xtime, timekeeper.clock); | ||
181 | } | ||
61 | 182 | ||
62 | #ifdef CONFIG_GENERIC_TIME | 183 | #ifdef CONFIG_GENERIC_TIME |
184 | |||
63 | /** | 185 | /** |
64 | * clocksource_forward_now - update clock to the current time | 186 | * timekeeping_forward_now - update clock to the current time |
65 | * | 187 | * |
66 | * Forward the current clock to update its state since the last call to | 188 | * Forward the current clock to update its state since the last call to |
67 | * update_wall_time(). This is useful before significant clock changes, | 189 | * update_wall_time(). This is useful before significant clock changes, |
68 | * as it avoids having to deal with this time offset explicitly. | 190 | * as it avoids having to deal with this time offset explicitly. |
69 | */ | 191 | */ |
70 | static void clocksource_forward_now(void) | 192 | static void timekeeping_forward_now(void) |
71 | { | 193 | { |
72 | cycle_t cycle_now, cycle_delta; | 194 | cycle_t cycle_now, cycle_delta; |
195 | struct clocksource *clock; | ||
73 | s64 nsec; | 196 | s64 nsec; |
74 | 197 | ||
75 | cycle_now = clocksource_read(clock); | 198 | clock = timekeeper.clock; |
199 | cycle_now = clock->read(clock); | ||
76 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; | 200 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; |
77 | clock->cycle_last = cycle_now; | 201 | clock->cycle_last = cycle_now; |
78 | 202 | ||
79 | nsec = cyc2ns(clock, cycle_delta); | 203 | nsec = clocksource_cyc2ns(cycle_delta, timekeeper.mult, |
204 | timekeeper.shift); | ||
80 | 205 | ||
81 | /* If arch requires, add in gettimeoffset() */ | 206 | /* If arch requires, add in gettimeoffset() */ |
82 | nsec += arch_gettimeoffset(); | 207 | nsec += arch_gettimeoffset(); |
83 | 208 | ||
84 | timespec_add_ns(&xtime, nsec); | 209 | timespec_add_ns(&xtime, nsec); |
85 | 210 | ||
86 | nsec = ((s64)cycle_delta * clock->mult_orig) >> clock->shift; | 211 | nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift); |
87 | clock->raw_time.tv_nsec += nsec; | 212 | timespec_add_ns(&raw_time, nsec); |
88 | } | 213 | } |
89 | 214 | ||
90 | /** | 215 | /** |
@@ -95,7 +220,6 @@ static void clocksource_forward_now(void) | |||
95 | */ | 220 | */ |
96 | void getnstimeofday(struct timespec *ts) | 221 | void getnstimeofday(struct timespec *ts) |
97 | { | 222 | { |
98 | cycle_t cycle_now, cycle_delta; | ||
99 | unsigned long seq; | 223 | unsigned long seq; |
100 | s64 nsecs; | 224 | s64 nsecs; |
101 | 225 | ||
@@ -105,15 +229,7 @@ void getnstimeofday(struct timespec *ts) | |||
105 | seq = read_seqbegin(&xtime_lock); | 229 | seq = read_seqbegin(&xtime_lock); |
106 | 230 | ||
107 | *ts = xtime; | 231 | *ts = xtime; |
108 | 232 | nsecs = timekeeping_get_ns(); | |
109 | /* read clocksource: */ | ||
110 | cycle_now = clocksource_read(clock); | ||
111 | |||
112 | /* calculate the delta since the last update_wall_time: */ | ||
113 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; | ||
114 | |||
115 | /* convert to nanoseconds: */ | ||
116 | nsecs = cyc2ns(clock, cycle_delta); | ||
117 | 233 | ||
118 | /* If arch requires, add in gettimeoffset() */ | 234 | /* If arch requires, add in gettimeoffset() */ |
119 | nsecs += arch_gettimeoffset(); | 235 | nsecs += arch_gettimeoffset(); |
@@ -125,6 +241,57 @@ void getnstimeofday(struct timespec *ts) | |||
125 | 241 | ||
126 | EXPORT_SYMBOL(getnstimeofday); | 242 | EXPORT_SYMBOL(getnstimeofday); |
127 | 243 | ||
244 | ktime_t ktime_get(void) | ||
245 | { | ||
246 | unsigned int seq; | ||
247 | s64 secs, nsecs; | ||
248 | |||
249 | WARN_ON(timekeeping_suspended); | ||
250 | |||
251 | do { | ||
252 | seq = read_seqbegin(&xtime_lock); | ||
253 | secs = xtime.tv_sec + wall_to_monotonic.tv_sec; | ||
254 | nsecs = xtime.tv_nsec + wall_to_monotonic.tv_nsec; | ||
255 | nsecs += timekeeping_get_ns(); | ||
256 | |||
257 | } while (read_seqretry(&xtime_lock, seq)); | ||
258 | /* | ||
259 | * Use ktime_set/ktime_add_ns to create a proper ktime on | ||
260 | * 32-bit architectures without CONFIG_KTIME_SCALAR. | ||
261 | */ | ||
262 | return ktime_add_ns(ktime_set(secs, 0), nsecs); | ||
263 | } | ||
264 | EXPORT_SYMBOL_GPL(ktime_get); | ||
265 | |||
266 | /** | ||
267 | * ktime_get_ts - get the monotonic clock in timespec format | ||
268 | * @ts: pointer to timespec variable | ||
269 | * | ||
270 | * The function calculates the monotonic clock from the realtime | ||
271 | * clock and the wall_to_monotonic offset and stores the result | ||
272 | * in normalized timespec format in the variable pointed to by @ts. | ||
273 | */ | ||
274 | void ktime_get_ts(struct timespec *ts) | ||
275 | { | ||
276 | struct timespec tomono; | ||
277 | unsigned int seq; | ||
278 | s64 nsecs; | ||
279 | |||
280 | WARN_ON(timekeeping_suspended); | ||
281 | |||
282 | do { | ||
283 | seq = read_seqbegin(&xtime_lock); | ||
284 | *ts = xtime; | ||
285 | tomono = wall_to_monotonic; | ||
286 | nsecs = timekeeping_get_ns(); | ||
287 | |||
288 | } while (read_seqretry(&xtime_lock, seq)); | ||
289 | |||
290 | set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec, | ||
291 | ts->tv_nsec + tomono.tv_nsec + nsecs); | ||
292 | } | ||
293 | EXPORT_SYMBOL_GPL(ktime_get_ts); | ||
294 | |||
128 | /** | 295 | /** |
129 | * do_gettimeofday - Returns the time of day in a timeval | 296 | * do_gettimeofday - Returns the time of day in a timeval |
130 | * @tv: pointer to the timeval to be set | 297 | * @tv: pointer to the timeval to be set |
@@ -157,7 +324,7 @@ int do_settimeofday(struct timespec *tv) | |||
157 | 324 | ||
158 | write_seqlock_irqsave(&xtime_lock, flags); | 325 | write_seqlock_irqsave(&xtime_lock, flags); |
159 | 326 | ||
160 | clocksource_forward_now(); | 327 | timekeeping_forward_now(); |
161 | 328 | ||
162 | ts_delta.tv_sec = tv->tv_sec - xtime.tv_sec; | 329 | ts_delta.tv_sec = tv->tv_sec - xtime.tv_sec; |
163 | ts_delta.tv_nsec = tv->tv_nsec - xtime.tv_nsec; | 330 | ts_delta.tv_nsec = tv->tv_nsec - xtime.tv_nsec; |
@@ -167,10 +334,10 @@ int do_settimeofday(struct timespec *tv) | |||
167 | 334 | ||
168 | update_xtime_cache(0); | 335 | update_xtime_cache(0); |
169 | 336 | ||
170 | clock->error = 0; | 337 | timekeeper.ntp_error = 0; |
171 | ntp_clear(); | 338 | ntp_clear(); |
172 | 339 | ||
173 | update_vsyscall(&xtime, clock); | 340 | update_vsyscall(&xtime, timekeeper.clock); |
174 | 341 | ||
175 | write_sequnlock_irqrestore(&xtime_lock, flags); | 342 | write_sequnlock_irqrestore(&xtime_lock, flags); |
176 | 343 | ||
@@ -187,44 +354,97 @@ EXPORT_SYMBOL(do_settimeofday); | |||
187 | * | 354 | * |
188 | * Accumulates current time interval and initializes new clocksource | 355 | * Accumulates current time interval and initializes new clocksource |
189 | */ | 356 | */ |
190 | static void change_clocksource(void) | 357 | static int change_clocksource(void *data) |
191 | { | 358 | { |
192 | struct clocksource *new, *old; | 359 | struct clocksource *new, *old; |
193 | 360 | ||
194 | new = clocksource_get_next(); | 361 | new = (struct clocksource *) data; |
362 | |||
363 | timekeeping_forward_now(); | ||
364 | if (!new->enable || new->enable(new) == 0) { | ||
365 | old = timekeeper.clock; | ||
366 | timekeeper_setup_internals(new); | ||
367 | if (old->disable) | ||
368 | old->disable(old); | ||
369 | } | ||
370 | return 0; | ||
371 | } | ||
195 | 372 | ||
196 | if (clock == new) | 373 | /** |
374 | * timekeeping_notify - Install a new clock source | ||
375 | * @clock: pointer to the clock source | ||
376 | * | ||
377 | * This function is called from clocksource.c after a new, better clock | ||
378 | * source has been registered. The caller holds the clocksource_mutex. | ||
379 | */ | ||
380 | void timekeeping_notify(struct clocksource *clock) | ||
381 | { | ||
382 | if (timekeeper.clock == clock) | ||
197 | return; | 383 | return; |
384 | stop_machine(change_clocksource, clock, NULL); | ||
385 | tick_clock_notify(); | ||
386 | } | ||
198 | 387 | ||
199 | clocksource_forward_now(); | 388 | #else /* GENERIC_TIME */ |
200 | 389 | ||
201 | if (clocksource_enable(new)) | 390 | static inline void timekeeping_forward_now(void) { } |
202 | return; | ||
203 | 391 | ||
204 | new->raw_time = clock->raw_time; | 392 | /** |
205 | old = clock; | 393 | * ktime_get - get the monotonic time in ktime_t format |
206 | clock = new; | 394 | * |
207 | clocksource_disable(old); | 395 | * returns the time in ktime_t format |
396 | */ | ||
397 | ktime_t ktime_get(void) | ||
398 | { | ||
399 | struct timespec now; | ||
208 | 400 | ||
209 | clock->cycle_last = 0; | 401 | ktime_get_ts(&now); |
210 | clock->cycle_last = clocksource_read(clock); | ||
211 | clock->error = 0; | ||
212 | clock->xtime_nsec = 0; | ||
213 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); | ||
214 | 402 | ||
215 | tick_clock_notify(); | 403 | return timespec_to_ktime(now); |
404 | } | ||
405 | EXPORT_SYMBOL_GPL(ktime_get); | ||
216 | 406 | ||
217 | /* | 407 | /** |
218 | * We're holding xtime lock and waking up klogd would deadlock | 408 | * ktime_get_ts - get the monotonic clock in timespec format |
219 | * us on enqueue. So no printing! | 409 | * @ts: pointer to timespec variable |
220 | printk(KERN_INFO "Time: %s clocksource has been installed.\n", | 410 | * |
221 | clock->name); | 411 | * The function calculates the monotonic clock from the realtime |
222 | */ | 412 | * clock and the wall_to_monotonic offset and stores the result |
413 | * in normalized timespec format in the variable pointed to by @ts. | ||
414 | */ | ||
415 | void ktime_get_ts(struct timespec *ts) | ||
416 | { | ||
417 | struct timespec tomono; | ||
418 | unsigned long seq; | ||
419 | |||
420 | do { | ||
421 | seq = read_seqbegin(&xtime_lock); | ||
422 | getnstimeofday(ts); | ||
423 | tomono = wall_to_monotonic; | ||
424 | |||
425 | } while (read_seqretry(&xtime_lock, seq)); | ||
426 | |||
427 | set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec, | ||
428 | ts->tv_nsec + tomono.tv_nsec); | ||
223 | } | 429 | } |
224 | #else | 430 | EXPORT_SYMBOL_GPL(ktime_get_ts); |
225 | static inline void clocksource_forward_now(void) { } | 431 | |
226 | static inline void change_clocksource(void) { } | 432 | #endif /* !GENERIC_TIME */ |
227 | #endif | 433 | |
434 | /** | ||
435 | * ktime_get_real - get the real (wall-) time in ktime_t format | ||
436 | * | ||
437 | * returns the time in ktime_t format | ||
438 | */ | ||
439 | ktime_t ktime_get_real(void) | ||
440 | { | ||
441 | struct timespec now; | ||
442 | |||
443 | getnstimeofday(&now); | ||
444 | |||
445 | return timespec_to_ktime(now); | ||
446 | } | ||
447 | EXPORT_SYMBOL_GPL(ktime_get_real); | ||
228 | 448 | ||
229 | /** | 449 | /** |
230 | * getrawmonotonic - Returns the raw monotonic time in a timespec | 450 | * getrawmonotonic - Returns the raw monotonic time in a timespec |
@@ -236,21 +456,11 @@ void getrawmonotonic(struct timespec *ts) | |||
236 | { | 456 | { |
237 | unsigned long seq; | 457 | unsigned long seq; |
238 | s64 nsecs; | 458 | s64 nsecs; |
239 | cycle_t cycle_now, cycle_delta; | ||
240 | 459 | ||
241 | do { | 460 | do { |
242 | seq = read_seqbegin(&xtime_lock); | 461 | seq = read_seqbegin(&xtime_lock); |
243 | 462 | nsecs = timekeeping_get_ns_raw(); | |
244 | /* read clocksource: */ | 463 | *ts = raw_time; |
245 | cycle_now = clocksource_read(clock); | ||
246 | |||
247 | /* calculate the delta since the last update_wall_time: */ | ||
248 | cycle_delta = (cycle_now - clock->cycle_last) & clock->mask; | ||
249 | |||
250 | /* convert to nanoseconds: */ | ||
251 | nsecs = ((s64)cycle_delta * clock->mult_orig) >> clock->shift; | ||
252 | |||
253 | *ts = clock->raw_time; | ||
254 | 464 | ||
255 | } while (read_seqretry(&xtime_lock, seq)); | 465 | } while (read_seqretry(&xtime_lock, seq)); |
256 | 466 | ||
@@ -270,7 +480,7 @@ int timekeeping_valid_for_hres(void) | |||
270 | do { | 480 | do { |
271 | seq = read_seqbegin(&xtime_lock); | 481 | seq = read_seqbegin(&xtime_lock); |
272 | 482 | ||
273 | ret = clock->flags & CLOCK_SOURCE_VALID_FOR_HRES; | 483 | ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES; |
274 | 484 | ||
275 | } while (read_seqretry(&xtime_lock, seq)); | 485 | } while (read_seqretry(&xtime_lock, seq)); |
276 | 486 | ||
@@ -278,17 +488,33 @@ int timekeeping_valid_for_hres(void) | |||
278 | } | 488 | } |
279 | 489 | ||
280 | /** | 490 | /** |
281 | * read_persistent_clock - Return time in seconds from the persistent clock. | 491 | * read_persistent_clock - Return time from the persistent clock. |
282 | * | 492 | * |
283 | * Weak dummy function for arches that do not yet support it. | 493 | * Weak dummy function for arches that do not yet support it. |
284 | * Returns seconds from epoch using the battery backed persistent clock. | 494 | * Reads the time from the battery backed persistent clock. |
285 | * Returns zero if unsupported. | 495 | * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported. |
286 | * | 496 | * |
287 | * XXX - Do be sure to remove it once all arches implement it. | 497 | * XXX - Do be sure to remove it once all arches implement it. |
288 | */ | 498 | */ |
289 | unsigned long __attribute__((weak)) read_persistent_clock(void) | 499 | void __attribute__((weak)) read_persistent_clock(struct timespec *ts) |
290 | { | 500 | { |
291 | return 0; | 501 | ts->tv_sec = 0; |
502 | ts->tv_nsec = 0; | ||
503 | } | ||
504 | |||
505 | /** | ||
506 | * read_boot_clock - Return time of the system start. | ||
507 | * | ||
508 | * Weak dummy function for arches that do not yet support it. | ||
509 | * Function to read the exact time the system has been started. | ||
510 | * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported. | ||
511 | * | ||
512 | * XXX - Do be sure to remove it once all arches implement it. | ||
513 | */ | ||
514 | void __attribute__((weak)) read_boot_clock(struct timespec *ts) | ||
515 | { | ||
516 | ts->tv_sec = 0; | ||
517 | ts->tv_nsec = 0; | ||
292 | } | 518 | } |
293 | 519 | ||
294 | /* | 520 | /* |
@@ -296,29 +522,40 @@ unsigned long __attribute__((weak)) read_persistent_clock(void) | |||
296 | */ | 522 | */ |
297 | void __init timekeeping_init(void) | 523 | void __init timekeeping_init(void) |
298 | { | 524 | { |
525 | struct clocksource *clock; | ||
299 | unsigned long flags; | 526 | unsigned long flags; |
300 | unsigned long sec = read_persistent_clock(); | 527 | struct timespec now, boot; |
528 | |||
529 | read_persistent_clock(&now); | ||
530 | read_boot_clock(&boot); | ||
301 | 531 | ||
302 | write_seqlock_irqsave(&xtime_lock, flags); | 532 | write_seqlock_irqsave(&xtime_lock, flags); |
303 | 533 | ||
304 | ntp_init(); | 534 | ntp_init(); |
305 | 535 | ||
306 | clock = clocksource_get_next(); | 536 | clock = clocksource_default_clock(); |
307 | clocksource_enable(clock); | 537 | if (clock->enable) |
308 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); | 538 | clock->enable(clock); |
309 | clock->cycle_last = clocksource_read(clock); | 539 | timekeeper_setup_internals(clock); |
310 | 540 | ||
311 | xtime.tv_sec = sec; | 541 | xtime.tv_sec = now.tv_sec; |
312 | xtime.tv_nsec = 0; | 542 | xtime.tv_nsec = now.tv_nsec; |
543 | raw_time.tv_sec = 0; | ||
544 | raw_time.tv_nsec = 0; | ||
545 | if (boot.tv_sec == 0 && boot.tv_nsec == 0) { | ||
546 | boot.tv_sec = xtime.tv_sec; | ||
547 | boot.tv_nsec = xtime.tv_nsec; | ||
548 | } | ||
313 | set_normalized_timespec(&wall_to_monotonic, | 549 | set_normalized_timespec(&wall_to_monotonic, |
314 | -xtime.tv_sec, -xtime.tv_nsec); | 550 | -boot.tv_sec, -boot.tv_nsec); |
315 | update_xtime_cache(0); | 551 | update_xtime_cache(0); |
316 | total_sleep_time = 0; | 552 | total_sleep_time.tv_sec = 0; |
553 | total_sleep_time.tv_nsec = 0; | ||
317 | write_sequnlock_irqrestore(&xtime_lock, flags); | 554 | write_sequnlock_irqrestore(&xtime_lock, flags); |
318 | } | 555 | } |
319 | 556 | ||
320 | /* time in seconds when suspend began */ | 557 | /* time in seconds when suspend began */ |
321 | static unsigned long timekeeping_suspend_time; | 558 | static struct timespec timekeeping_suspend_time; |
322 | 559 | ||
323 | /** | 560 | /** |
324 | * timekeeping_resume - Resumes the generic timekeeping subsystem. | 561 | * timekeeping_resume - Resumes the generic timekeeping subsystem. |
@@ -331,24 +568,24 @@ static unsigned long timekeeping_suspend_time; | |||
331 | static int timekeeping_resume(struct sys_device *dev) | 568 | static int timekeeping_resume(struct sys_device *dev) |
332 | { | 569 | { |
333 | unsigned long flags; | 570 | unsigned long flags; |
334 | unsigned long now = read_persistent_clock(); | 571 | struct timespec ts; |
572 | |||
573 | read_persistent_clock(&ts); | ||
335 | 574 | ||
336 | clocksource_resume(); | 575 | clocksource_resume(); |
337 | 576 | ||
338 | write_seqlock_irqsave(&xtime_lock, flags); | 577 | write_seqlock_irqsave(&xtime_lock, flags); |
339 | 578 | ||
340 | if (now && (now > timekeeping_suspend_time)) { | 579 | if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) { |
341 | unsigned long sleep_length = now - timekeeping_suspend_time; | 580 | ts = timespec_sub(ts, timekeeping_suspend_time); |
342 | 581 | xtime = timespec_add_safe(xtime, ts); | |
343 | xtime.tv_sec += sleep_length; | 582 | wall_to_monotonic = timespec_sub(wall_to_monotonic, ts); |
344 | wall_to_monotonic.tv_sec -= sleep_length; | 583 | total_sleep_time = timespec_add_safe(total_sleep_time, ts); |
345 | total_sleep_time += sleep_length; | ||
346 | } | 584 | } |
347 | update_xtime_cache(0); | 585 | update_xtime_cache(0); |
348 | /* re-base the last cycle value */ | 586 | /* re-base the last cycle value */ |
349 | clock->cycle_last = 0; | 587 | timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock); |
350 | clock->cycle_last = clocksource_read(clock); | 588 | timekeeper.ntp_error = 0; |
351 | clock->error = 0; | ||
352 | timekeeping_suspended = 0; | 589 | timekeeping_suspended = 0; |
353 | write_sequnlock_irqrestore(&xtime_lock, flags); | 590 | write_sequnlock_irqrestore(&xtime_lock, flags); |
354 | 591 | ||
@@ -366,10 +603,10 @@ static int timekeeping_suspend(struct sys_device *dev, pm_message_t state) | |||
366 | { | 603 | { |
367 | unsigned long flags; | 604 | unsigned long flags; |
368 | 605 | ||
369 | timekeeping_suspend_time = read_persistent_clock(); | 606 | read_persistent_clock(&timekeeping_suspend_time); |
370 | 607 | ||
371 | write_seqlock_irqsave(&xtime_lock, flags); | 608 | write_seqlock_irqsave(&xtime_lock, flags); |
372 | clocksource_forward_now(); | 609 | timekeeping_forward_now(); |
373 | timekeeping_suspended = 1; | 610 | timekeeping_suspended = 1; |
374 | write_sequnlock_irqrestore(&xtime_lock, flags); | 611 | write_sequnlock_irqrestore(&xtime_lock, flags); |
375 | 612 | ||
@@ -404,7 +641,7 @@ device_initcall(timekeeping_init_device); | |||
404 | * If the error is already larger, we look ahead even further | 641 | * If the error is already larger, we look ahead even further |
405 | * to compensate for late or lost adjustments. | 642 | * to compensate for late or lost adjustments. |
406 | */ | 643 | */ |
407 | static __always_inline int clocksource_bigadjust(s64 error, s64 *interval, | 644 | static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval, |
408 | s64 *offset) | 645 | s64 *offset) |
409 | { | 646 | { |
410 | s64 tick_error, i; | 647 | s64 tick_error, i; |
@@ -420,7 +657,7 @@ static __always_inline int clocksource_bigadjust(s64 error, s64 *interval, | |||
420 | * here. This is tuned so that an error of about 1 msec is adjusted | 657 | * here. This is tuned so that an error of about 1 msec is adjusted |
421 | * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks). | 658 | * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks). |
422 | */ | 659 | */ |
423 | error2 = clock->error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ); | 660 | error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ); |
424 | error2 = abs(error2); | 661 | error2 = abs(error2); |
425 | for (look_ahead = 0; error2 > 0; look_ahead++) | 662 | for (look_ahead = 0; error2 > 0; look_ahead++) |
426 | error2 >>= 2; | 663 | error2 >>= 2; |
@@ -429,8 +666,8 @@ static __always_inline int clocksource_bigadjust(s64 error, s64 *interval, | |||
429 | * Now calculate the error in (1 << look_ahead) ticks, but first | 666 | * Now calculate the error in (1 << look_ahead) ticks, but first |
430 | * remove the single look ahead already included in the error. | 667 | * remove the single look ahead already included in the error. |
431 | */ | 668 | */ |
432 | tick_error = tick_length >> (NTP_SCALE_SHIFT - clock->shift + 1); | 669 | tick_error = tick_length >> (timekeeper.ntp_error_shift + 1); |
433 | tick_error -= clock->xtime_interval >> 1; | 670 | tick_error -= timekeeper.xtime_interval >> 1; |
434 | error = ((error - tick_error) >> look_ahead) + tick_error; | 671 | error = ((error - tick_error) >> look_ahead) + tick_error; |
435 | 672 | ||
436 | /* Finally calculate the adjustment shift value. */ | 673 | /* Finally calculate the adjustment shift value. */ |
@@ -455,18 +692,18 @@ static __always_inline int clocksource_bigadjust(s64 error, s64 *interval, | |||
455 | * this is optimized for the most common adjustments of -1,0,1, | 692 | * this is optimized for the most common adjustments of -1,0,1, |
456 | * for other values we can do a bit more work. | 693 | * for other values we can do a bit more work. |
457 | */ | 694 | */ |
458 | static void clocksource_adjust(s64 offset) | 695 | static void timekeeping_adjust(s64 offset) |
459 | { | 696 | { |
460 | s64 error, interval = clock->cycle_interval; | 697 | s64 error, interval = timekeeper.cycle_interval; |
461 | int adj; | 698 | int adj; |
462 | 699 | ||
463 | error = clock->error >> (NTP_SCALE_SHIFT - clock->shift - 1); | 700 | error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1); |
464 | if (error > interval) { | 701 | if (error > interval) { |
465 | error >>= 2; | 702 | error >>= 2; |
466 | if (likely(error <= interval)) | 703 | if (likely(error <= interval)) |
467 | adj = 1; | 704 | adj = 1; |
468 | else | 705 | else |
469 | adj = clocksource_bigadjust(error, &interval, &offset); | 706 | adj = timekeeping_bigadjust(error, &interval, &offset); |
470 | } else if (error < -interval) { | 707 | } else if (error < -interval) { |
471 | error >>= 2; | 708 | error >>= 2; |
472 | if (likely(error >= -interval)) { | 709 | if (likely(error >= -interval)) { |
@@ -474,15 +711,15 @@ static void clocksource_adjust(s64 offset) | |||
474 | interval = -interval; | 711 | interval = -interval; |
475 | offset = -offset; | 712 | offset = -offset; |
476 | } else | 713 | } else |
477 | adj = clocksource_bigadjust(error, &interval, &offset); | 714 | adj = timekeeping_bigadjust(error, &interval, &offset); |
478 | } else | 715 | } else |
479 | return; | 716 | return; |
480 | 717 | ||
481 | clock->mult += adj; | 718 | timekeeper.mult += adj; |
482 | clock->xtime_interval += interval; | 719 | timekeeper.xtime_interval += interval; |
483 | clock->xtime_nsec -= offset; | 720 | timekeeper.xtime_nsec -= offset; |
484 | clock->error -= (interval - offset) << | 721 | timekeeper.ntp_error -= (interval - offset) << |
485 | (NTP_SCALE_SHIFT - clock->shift); | 722 | timekeeper.ntp_error_shift; |
486 | } | 723 | } |
487 | 724 | ||
488 | /** | 725 | /** |
@@ -492,53 +729,59 @@ static void clocksource_adjust(s64 offset) | |||
492 | */ | 729 | */ |
493 | void update_wall_time(void) | 730 | void update_wall_time(void) |
494 | { | 731 | { |
732 | struct clocksource *clock; | ||
495 | cycle_t offset; | 733 | cycle_t offset; |
734 | u64 nsecs; | ||
496 | 735 | ||
497 | /* Make sure we're fully resumed: */ | 736 | /* Make sure we're fully resumed: */ |
498 | if (unlikely(timekeeping_suspended)) | 737 | if (unlikely(timekeeping_suspended)) |
499 | return; | 738 | return; |
500 | 739 | ||
740 | clock = timekeeper.clock; | ||
501 | #ifdef CONFIG_GENERIC_TIME | 741 | #ifdef CONFIG_GENERIC_TIME |
502 | offset = (clocksource_read(clock) - clock->cycle_last) & clock->mask; | 742 | offset = (clock->read(clock) - clock->cycle_last) & clock->mask; |
503 | #else | 743 | #else |
504 | offset = clock->cycle_interval; | 744 | offset = timekeeper.cycle_interval; |
505 | #endif | 745 | #endif |
506 | clock->xtime_nsec = (s64)xtime.tv_nsec << clock->shift; | 746 | timekeeper.xtime_nsec = (s64)xtime.tv_nsec << timekeeper.shift; |
507 | 747 | ||
508 | /* normally this loop will run just once, however in the | 748 | /* normally this loop will run just once, however in the |
509 | * case of lost or late ticks, it will accumulate correctly. | 749 | * case of lost or late ticks, it will accumulate correctly. |
510 | */ | 750 | */ |
511 | while (offset >= clock->cycle_interval) { | 751 | while (offset >= timekeeper.cycle_interval) { |
752 | u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift; | ||
753 | |||
512 | /* accumulate one interval */ | 754 | /* accumulate one interval */ |
513 | offset -= clock->cycle_interval; | 755 | offset -= timekeeper.cycle_interval; |
514 | clock->cycle_last += clock->cycle_interval; | 756 | clock->cycle_last += timekeeper.cycle_interval; |
515 | 757 | ||
516 | clock->xtime_nsec += clock->xtime_interval; | 758 | timekeeper.xtime_nsec += timekeeper.xtime_interval; |
517 | if (clock->xtime_nsec >= (u64)NSEC_PER_SEC << clock->shift) { | 759 | if (timekeeper.xtime_nsec >= nsecps) { |
518 | clock->xtime_nsec -= (u64)NSEC_PER_SEC << clock->shift; | 760 | timekeeper.xtime_nsec -= nsecps; |
519 | xtime.tv_sec++; | 761 | xtime.tv_sec++; |
520 | second_overflow(); | 762 | second_overflow(); |
521 | } | 763 | } |
522 | 764 | ||
523 | clock->raw_time.tv_nsec += clock->raw_interval; | 765 | raw_time.tv_nsec += timekeeper.raw_interval; |
524 | if (clock->raw_time.tv_nsec >= NSEC_PER_SEC) { | 766 | if (raw_time.tv_nsec >= NSEC_PER_SEC) { |
525 | clock->raw_time.tv_nsec -= NSEC_PER_SEC; | 767 | raw_time.tv_nsec -= NSEC_PER_SEC; |
526 | clock->raw_time.tv_sec++; | 768 | raw_time.tv_sec++; |
527 | } | 769 | } |
528 | 770 | ||
529 | /* accumulate error between NTP and clock interval */ | 771 | /* accumulate error between NTP and clock interval */ |
530 | clock->error += tick_length; | 772 | timekeeper.ntp_error += tick_length; |
531 | clock->error -= clock->xtime_interval << (NTP_SCALE_SHIFT - clock->shift); | 773 | timekeeper.ntp_error -= timekeeper.xtime_interval << |
774 | timekeeper.ntp_error_shift; | ||
532 | } | 775 | } |
533 | 776 | ||
534 | /* correct the clock when NTP error is too big */ | 777 | /* correct the clock when NTP error is too big */ |
535 | clocksource_adjust(offset); | 778 | timekeeping_adjust(offset); |
536 | 779 | ||
537 | /* | 780 | /* |
538 | * Since in the loop above, we accumulate any amount of time | 781 | * Since in the loop above, we accumulate any amount of time |
539 | * in xtime_nsec over a second into xtime.tv_sec, its possible for | 782 | * in xtime_nsec over a second into xtime.tv_sec, its possible for |
540 | * xtime_nsec to be fairly small after the loop. Further, if we're | 783 | * xtime_nsec to be fairly small after the loop. Further, if we're |
541 | * slightly speeding the clocksource up in clocksource_adjust(), | 784 | * slightly speeding the clocksource up in timekeeping_adjust(), |
542 | * its possible the required corrective factor to xtime_nsec could | 785 | * its possible the required corrective factor to xtime_nsec could |
543 | * cause it to underflow. | 786 | * cause it to underflow. |
544 | * | 787 | * |
@@ -550,24 +793,25 @@ void update_wall_time(void) | |||
550 | * We'll correct this error next time through this function, when | 793 | * We'll correct this error next time through this function, when |
551 | * xtime_nsec is not as small. | 794 | * xtime_nsec is not as small. |
552 | */ | 795 | */ |
553 | if (unlikely((s64)clock->xtime_nsec < 0)) { | 796 | if (unlikely((s64)timekeeper.xtime_nsec < 0)) { |
554 | s64 neg = -(s64)clock->xtime_nsec; | 797 | s64 neg = -(s64)timekeeper.xtime_nsec; |
555 | clock->xtime_nsec = 0; | 798 | timekeeper.xtime_nsec = 0; |
556 | clock->error += neg << (NTP_SCALE_SHIFT - clock->shift); | 799 | timekeeper.ntp_error += neg << timekeeper.ntp_error_shift; |
557 | } | 800 | } |
558 | 801 | ||
559 | /* store full nanoseconds into xtime after rounding it up and | 802 | /* store full nanoseconds into xtime after rounding it up and |
560 | * add the remainder to the error difference. | 803 | * add the remainder to the error difference. |
561 | */ | 804 | */ |
562 | xtime.tv_nsec = ((s64)clock->xtime_nsec >> clock->shift) + 1; | 805 | xtime.tv_nsec = ((s64) timekeeper.xtime_nsec >> timekeeper.shift) + 1; |
563 | clock->xtime_nsec -= (s64)xtime.tv_nsec << clock->shift; | 806 | timekeeper.xtime_nsec -= (s64) xtime.tv_nsec << timekeeper.shift; |
564 | clock->error += clock->xtime_nsec << (NTP_SCALE_SHIFT - clock->shift); | 807 | timekeeper.ntp_error += timekeeper.xtime_nsec << |
808 | timekeeper.ntp_error_shift; | ||
565 | 809 | ||
566 | update_xtime_cache(cyc2ns(clock, offset)); | 810 | nsecs = clocksource_cyc2ns(offset, timekeeper.mult, timekeeper.shift); |
811 | update_xtime_cache(nsecs); | ||
567 | 812 | ||
568 | /* check to see if there is a new clocksource to use */ | 813 | /* check to see if there is a new clocksource to use */ |
569 | change_clocksource(); | 814 | update_vsyscall(&xtime, timekeeper.clock); |
570 | update_vsyscall(&xtime, clock); | ||
571 | } | 815 | } |
572 | 816 | ||
573 | /** | 817 | /** |
@@ -583,9 +827,12 @@ void update_wall_time(void) | |||
583 | */ | 827 | */ |
584 | void getboottime(struct timespec *ts) | 828 | void getboottime(struct timespec *ts) |
585 | { | 829 | { |
586 | set_normalized_timespec(ts, | 830 | struct timespec boottime = { |
587 | - (wall_to_monotonic.tv_sec + total_sleep_time), | 831 | .tv_sec = wall_to_monotonic.tv_sec + total_sleep_time.tv_sec, |
588 | - wall_to_monotonic.tv_nsec); | 832 | .tv_nsec = wall_to_monotonic.tv_nsec + total_sleep_time.tv_nsec |
833 | }; | ||
834 | |||
835 | set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec); | ||
589 | } | 836 | } |
590 | 837 | ||
591 | /** | 838 | /** |
@@ -594,7 +841,7 @@ void getboottime(struct timespec *ts) | |||
594 | */ | 841 | */ |
595 | void monotonic_to_bootbased(struct timespec *ts) | 842 | void monotonic_to_bootbased(struct timespec *ts) |
596 | { | 843 | { |
597 | ts->tv_sec += total_sleep_time; | 844 | *ts = timespec_add_safe(*ts, total_sleep_time); |
598 | } | 845 | } |
599 | 846 | ||
600 | unsigned long get_seconds(void) | 847 | unsigned long get_seconds(void) |
@@ -603,6 +850,10 @@ unsigned long get_seconds(void) | |||
603 | } | 850 | } |
604 | EXPORT_SYMBOL(get_seconds); | 851 | EXPORT_SYMBOL(get_seconds); |
605 | 852 | ||
853 | struct timespec __current_kernel_time(void) | ||
854 | { | ||
855 | return xtime_cache; | ||
856 | } | ||
606 | 857 | ||
607 | struct timespec current_kernel_time(void) | 858 | struct timespec current_kernel_time(void) |
608 | { | 859 | { |
@@ -618,3 +869,20 @@ struct timespec current_kernel_time(void) | |||
618 | return now; | 869 | return now; |
619 | } | 870 | } |
620 | EXPORT_SYMBOL(current_kernel_time); | 871 | EXPORT_SYMBOL(current_kernel_time); |
872 | |||
873 | struct timespec get_monotonic_coarse(void) | ||
874 | { | ||
875 | struct timespec now, mono; | ||
876 | unsigned long seq; | ||
877 | |||
878 | do { | ||
879 | seq = read_seqbegin(&xtime_lock); | ||
880 | |||
881 | now = xtime_cache; | ||
882 | mono = wall_to_monotonic; | ||
883 | } while (read_seqretry(&xtime_lock, seq)); | ||
884 | |||
885 | set_normalized_timespec(&now, now.tv_sec + mono.tv_sec, | ||
886 | now.tv_nsec + mono.tv_nsec); | ||
887 | return now; | ||
888 | } | ||
diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c index fddd69d16e03..1b5b7aa2fdfd 100644 --- a/kernel/time/timer_list.c +++ b/kernel/time/timer_list.c | |||
@@ -275,7 +275,7 @@ static int timer_list_open(struct inode *inode, struct file *filp) | |||
275 | return single_open(filp, timer_list_show, NULL); | 275 | return single_open(filp, timer_list_show, NULL); |
276 | } | 276 | } |
277 | 277 | ||
278 | static struct file_operations timer_list_fops = { | 278 | static const struct file_operations timer_list_fops = { |
279 | .open = timer_list_open, | 279 | .open = timer_list_open, |
280 | .read = seq_read, | 280 | .read = seq_read, |
281 | .llseek = seq_lseek, | 281 | .llseek = seq_lseek, |
diff --git a/kernel/time/timer_stats.c b/kernel/time/timer_stats.c index 4cde8b9c716f..ee5681f8d7ec 100644 --- a/kernel/time/timer_stats.c +++ b/kernel/time/timer_stats.c | |||
@@ -395,7 +395,7 @@ static int tstats_open(struct inode *inode, struct file *filp) | |||
395 | return single_open(filp, tstats_show, NULL); | 395 | return single_open(filp, tstats_show, NULL); |
396 | } | 396 | } |
397 | 397 | ||
398 | static struct file_operations tstats_fops = { | 398 | static const struct file_operations tstats_fops = { |
399 | .open = tstats_open, | 399 | .open = tstats_open, |
400 | .read = seq_read, | 400 | .read = seq_read, |
401 | .write = tstats_write, | 401 | .write = tstats_write, |