clockevents: Cleanup dead cpu explicitely
[linux-2.6-block.git] / kernel / time / hrtimer.c
CommitLineData
c0a31329
TG
1/*
2 * linux/kernel/hrtimer.c
3 *
3c8aa39d 4 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
79bf2bb3 5 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
54cdfdb4 6 * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
c0a31329
TG
7 *
8 * High-resolution kernel timers
9 *
10 * In contrast to the low-resolution timeout API implemented in
11 * kernel/timer.c, hrtimers provide finer resolution and accuracy
12 * depending on system configuration and capabilities.
13 *
14 * These timers are currently used for:
15 * - itimers
16 * - POSIX timers
17 * - nanosleep
18 * - precise in-kernel timing
19 *
20 * Started by: Thomas Gleixner and Ingo Molnar
21 *
22 * Credits:
23 * based on kernel/timer.c
24 *
66188fae
TG
25 * Help, testing, suggestions, bugfixes, improvements were
26 * provided by:
27 *
28 * George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel
29 * et. al.
30 *
c0a31329
TG
31 * For licencing details see kernel-base/COPYING
32 */
33
34#include <linux/cpu.h>
9984de1a 35#include <linux/export.h>
c0a31329
TG
36#include <linux/percpu.h>
37#include <linux/hrtimer.h>
38#include <linux/notifier.h>
39#include <linux/syscalls.h>
54cdfdb4 40#include <linux/kallsyms.h>
c0a31329 41#include <linux/interrupt.h>
79bf2bb3 42#include <linux/tick.h>
54cdfdb4
TG
43#include <linux/seq_file.h>
44#include <linux/err.h>
237fc6e7 45#include <linux/debugobjects.h>
eea08f32 46#include <linux/sched.h>
cf4aebc2 47#include <linux/sched/sysctl.h>
8bd75c77 48#include <linux/sched/rt.h>
aab03e05 49#include <linux/sched/deadline.h>
eea08f32 50#include <linux/timer.h>
b0f8c44f 51#include <linux/freezer.h>
c0a31329
TG
52
53#include <asm/uaccess.h>
54
c6a2a177
XG
55#include <trace/events/timer.h>
56
c1797baf 57#include "tick-internal.h"
8b094cd0 58
c0a31329
TG
59/*
60 * The timer bases:
7978672c 61 *
e06383db
JS
62 * There are more clockids then hrtimer bases. Thus, we index
63 * into the timer bases by the hrtimer_base_type enum. When trying
64 * to reach a base using a clockid, hrtimer_clockid_to_base()
65 * is used to convert from clockid to the proper hrtimer_base_type.
c0a31329 66 */
54cdfdb4 67DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
c0a31329 68{
3c8aa39d 69
84cc8fd2 70 .lock = __RAW_SPIN_LOCK_UNLOCKED(hrtimer_bases.lock),
3c8aa39d 71 .clock_base =
c0a31329 72 {
3c8aa39d 73 {
ab8177bc
TG
74 .index = HRTIMER_BASE_MONOTONIC,
75 .clockid = CLOCK_MONOTONIC,
3c8aa39d 76 .get_time = &ktime_get,
54cdfdb4 77 .resolution = KTIME_LOW_RES,
3c8aa39d 78 },
68fa61c0
TG
79 {
80 .index = HRTIMER_BASE_REALTIME,
81 .clockid = CLOCK_REALTIME,
82 .get_time = &ktime_get_real,
83 .resolution = KTIME_LOW_RES,
84 },
70a08cca 85 {
ab8177bc
TG
86 .index = HRTIMER_BASE_BOOTTIME,
87 .clockid = CLOCK_BOOTTIME,
70a08cca
JS
88 .get_time = &ktime_get_boottime,
89 .resolution = KTIME_LOW_RES,
90 },
90adda98
JS
91 {
92 .index = HRTIMER_BASE_TAI,
93 .clockid = CLOCK_TAI,
94 .get_time = &ktime_get_clocktai,
95 .resolution = KTIME_LOW_RES,
96 },
3c8aa39d 97 }
c0a31329
TG
98};
99
942c3c5c 100static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
ce31332d
TG
101 [CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
102 [CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
103 [CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
90adda98 104 [CLOCK_TAI] = HRTIMER_BASE_TAI,
ce31332d 105};
e06383db
JS
106
107static inline int hrtimer_clockid_to_base(clockid_t clock_id)
108{
109 return hrtimer_clock_to_base_table[clock_id];
110}
111
112
92127c7a
TG
113/*
114 * Get the coarse grained time at the softirq based on xtime and
115 * wall_to_monotonic.
116 */
3c8aa39d 117static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
92127c7a 118{
76f41088
JS
119 ktime_t xtim, mono, boot, tai;
120 ktime_t off_real, off_boot, off_tai;
92127c7a 121
76f41088
JS
122 mono = ktime_get_update_offsets_tick(&off_real, &off_boot, &off_tai);
123 boot = ktime_add(mono, off_boot);
124 xtim = ktime_add(mono, off_real);
2d926c15 125 tai = ktime_add(mono, off_tai);
92127c7a 126
e06383db 127 base->clock_base[HRTIMER_BASE_REALTIME].softirq_time = xtim;
70a08cca
JS
128 base->clock_base[HRTIMER_BASE_MONOTONIC].softirq_time = mono;
129 base->clock_base[HRTIMER_BASE_BOOTTIME].softirq_time = boot;
76f41088 130 base->clock_base[HRTIMER_BASE_TAI].softirq_time = tai;
92127c7a
TG
131}
132
c0a31329
TG
133/*
134 * Functions and macros which are different for UP/SMP systems are kept in a
135 * single place
136 */
137#ifdef CONFIG_SMP
138
c0a31329
TG
139/*
140 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
141 * means that all timers which are tied to this base via timer->base are
142 * locked, and the base itself is locked too.
143 *
144 * So __run_timers/migrate_timers can safely modify all timers which could
145 * be found on the lists/queues.
146 *
147 * When the timer's base is locked, and the timer removed from list, it is
148 * possible to set timer->base = NULL and drop the lock: the timer remains
149 * locked.
150 */
3c8aa39d
TG
151static
152struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
153 unsigned long *flags)
c0a31329 154{
3c8aa39d 155 struct hrtimer_clock_base *base;
c0a31329
TG
156
157 for (;;) {
158 base = timer->base;
159 if (likely(base != NULL)) {
ecb49d1a 160 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
c0a31329
TG
161 if (likely(base == timer->base))
162 return base;
163 /* The timer has migrated to another CPU: */
ecb49d1a 164 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
c0a31329
TG
165 }
166 cpu_relax();
167 }
168}
169
6ff7041d
TG
170/*
171 * With HIGHRES=y we do not migrate the timer when it is expiring
172 * before the next event on the target cpu because we cannot reprogram
173 * the target cpu hardware and we would cause it to fire late.
174 *
175 * Called with cpu_base->lock of target cpu held.
176 */
177static int
178hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
179{
180#ifdef CONFIG_HIGH_RES_TIMERS
181 ktime_t expires;
182
183 if (!new_base->cpu_base->hres_active)
184 return 0;
185
186 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
187 return expires.tv64 <= new_base->cpu_base->expires_next.tv64;
188#else
189 return 0;
190#endif
191}
192
c0a31329
TG
193/*
194 * Switch the timer base to the current CPU when possible.
195 */
3c8aa39d 196static inline struct hrtimer_clock_base *
597d0275
AB
197switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
198 int pinned)
c0a31329 199{
3c8aa39d
TG
200 struct hrtimer_clock_base *new_base;
201 struct hrtimer_cpu_base *new_cpu_base;
6ff7041d 202 int this_cpu = smp_processor_id();
6201b4d6 203 int cpu = get_nohz_timer_target(pinned);
ab8177bc 204 int basenum = base->index;
c0a31329 205
eea08f32
AB
206again:
207 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
e06383db 208 new_base = &new_cpu_base->clock_base[basenum];
c0a31329
TG
209
210 if (base != new_base) {
211 /*
6ff7041d 212 * We are trying to move timer to new_base.
c0a31329
TG
213 * However we can't change timer's base while it is running,
214 * so we keep it on the same CPU. No hassle vs. reprogramming
215 * the event source in the high resolution case. The softirq
216 * code will take care of this when the timer function has
217 * completed. There is no conflict as we hold the lock until
218 * the timer is enqueued.
219 */
54cdfdb4 220 if (unlikely(hrtimer_callback_running(timer)))
c0a31329
TG
221 return base;
222
223 /* See the comment in lock_timer_base() */
224 timer->base = NULL;
ecb49d1a
TG
225 raw_spin_unlock(&base->cpu_base->lock);
226 raw_spin_lock(&new_base->cpu_base->lock);
eea08f32 227
6ff7041d
TG
228 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
229 cpu = this_cpu;
ecb49d1a
TG
230 raw_spin_unlock(&new_base->cpu_base->lock);
231 raw_spin_lock(&base->cpu_base->lock);
6ff7041d
TG
232 timer->base = base;
233 goto again;
eea08f32 234 }
c0a31329 235 timer->base = new_base;
012a45e3
LM
236 } else {
237 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
238 cpu = this_cpu;
239 goto again;
240 }
c0a31329
TG
241 }
242 return new_base;
243}
244
245#else /* CONFIG_SMP */
246
3c8aa39d 247static inline struct hrtimer_clock_base *
c0a31329
TG
248lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
249{
3c8aa39d 250 struct hrtimer_clock_base *base = timer->base;
c0a31329 251
ecb49d1a 252 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
c0a31329
TG
253
254 return base;
255}
256
eea08f32 257# define switch_hrtimer_base(t, b, p) (b)
c0a31329
TG
258
259#endif /* !CONFIG_SMP */
260
261/*
262 * Functions for the union type storage format of ktime_t which are
263 * too large for inlining:
264 */
265#if BITS_PER_LONG < 64
c0a31329
TG
266/*
267 * Divide a ktime value by a nanosecond value
268 */
8b618628 269u64 __ktime_divns(const ktime_t kt, s64 div)
c0a31329 270{
900cfa46 271 u64 dclc;
c0a31329
TG
272 int sft = 0;
273
900cfa46 274 dclc = ktime_to_ns(kt);
c0a31329
TG
275 /* Make sure the divisor is less than 2^32: */
276 while (div >> 32) {
277 sft++;
278 div >>= 1;
279 }
280 dclc >>= sft;
281 do_div(dclc, (unsigned long) div);
282
4d672e7a 283 return dclc;
c0a31329 284}
8b618628 285EXPORT_SYMBOL_GPL(__ktime_divns);
c0a31329
TG
286#endif /* BITS_PER_LONG >= 64 */
287
5a7780e7
TG
288/*
289 * Add two ktime values and do a safety check for overflow:
290 */
291ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
292{
293 ktime_t res = ktime_add(lhs, rhs);
294
295 /*
296 * We use KTIME_SEC_MAX here, the maximum timeout which we can
297 * return to user space in a timespec:
298 */
299 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
300 res = ktime_set(KTIME_SEC_MAX, 0);
301
302 return res;
303}
304
8daa21e6
AB
305EXPORT_SYMBOL_GPL(ktime_add_safe);
306
237fc6e7
TG
307#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
308
309static struct debug_obj_descr hrtimer_debug_descr;
310
99777288
SG
311static void *hrtimer_debug_hint(void *addr)
312{
313 return ((struct hrtimer *) addr)->function;
314}
315
237fc6e7
TG
316/*
317 * fixup_init is called when:
318 * - an active object is initialized
319 */
320static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
321{
322 struct hrtimer *timer = addr;
323
324 switch (state) {
325 case ODEBUG_STATE_ACTIVE:
326 hrtimer_cancel(timer);
327 debug_object_init(timer, &hrtimer_debug_descr);
328 return 1;
329 default:
330 return 0;
331 }
332}
333
334/*
335 * fixup_activate is called when:
336 * - an active object is activated
337 * - an unknown object is activated (might be a statically initialized object)
338 */
339static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
340{
341 switch (state) {
342
343 case ODEBUG_STATE_NOTAVAILABLE:
344 WARN_ON_ONCE(1);
345 return 0;
346
347 case ODEBUG_STATE_ACTIVE:
348 WARN_ON(1);
349
350 default:
351 return 0;
352 }
353}
354
355/*
356 * fixup_free is called when:
357 * - an active object is freed
358 */
359static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
360{
361 struct hrtimer *timer = addr;
362
363 switch (state) {
364 case ODEBUG_STATE_ACTIVE:
365 hrtimer_cancel(timer);
366 debug_object_free(timer, &hrtimer_debug_descr);
367 return 1;
368 default:
369 return 0;
370 }
371}
372
373static struct debug_obj_descr hrtimer_debug_descr = {
374 .name = "hrtimer",
99777288 375 .debug_hint = hrtimer_debug_hint,
237fc6e7
TG
376 .fixup_init = hrtimer_fixup_init,
377 .fixup_activate = hrtimer_fixup_activate,
378 .fixup_free = hrtimer_fixup_free,
379};
380
381static inline void debug_hrtimer_init(struct hrtimer *timer)
382{
383 debug_object_init(timer, &hrtimer_debug_descr);
384}
385
386static inline void debug_hrtimer_activate(struct hrtimer *timer)
387{
388 debug_object_activate(timer, &hrtimer_debug_descr);
389}
390
391static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
392{
393 debug_object_deactivate(timer, &hrtimer_debug_descr);
394}
395
396static inline void debug_hrtimer_free(struct hrtimer *timer)
397{
398 debug_object_free(timer, &hrtimer_debug_descr);
399}
400
401static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
402 enum hrtimer_mode mode);
403
404void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
405 enum hrtimer_mode mode)
406{
407 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
408 __hrtimer_init(timer, clock_id, mode);
409}
2bc481cf 410EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
237fc6e7
TG
411
412void destroy_hrtimer_on_stack(struct hrtimer *timer)
413{
414 debug_object_free(timer, &hrtimer_debug_descr);
415}
416
417#else
418static inline void debug_hrtimer_init(struct hrtimer *timer) { }
419static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
420static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
421#endif
422
c6a2a177
XG
423static inline void
424debug_init(struct hrtimer *timer, clockid_t clockid,
425 enum hrtimer_mode mode)
426{
427 debug_hrtimer_init(timer);
428 trace_hrtimer_init(timer, clockid, mode);
429}
430
431static inline void debug_activate(struct hrtimer *timer)
432{
433 debug_hrtimer_activate(timer);
434 trace_hrtimer_start(timer);
435}
436
437static inline void debug_deactivate(struct hrtimer *timer)
438{
439 debug_hrtimer_deactivate(timer);
440 trace_hrtimer_cancel(timer);
441}
442
9bc74919 443#if defined(CONFIG_NO_HZ_COMMON) || defined(CONFIG_HIGH_RES_TIMERS)
4ebbda52 444static ktime_t __hrtimer_get_next_event(struct hrtimer_cpu_base *cpu_base)
9bc74919
TG
445{
446 struct hrtimer_clock_base *base = cpu_base->clock_base;
447 ktime_t expires, expires_next = { .tv64 = KTIME_MAX };
448 int i;
449
450 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
451 struct timerqueue_node *next;
452 struct hrtimer *timer;
453
454 next = timerqueue_getnext(&base->active);
455 if (!next)
456 continue;
457
458 timer = container_of(next, struct hrtimer, node);
459 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
460 if (expires.tv64 < expires_next.tv64)
461 expires_next = expires;
462 }
463 /*
464 * clock_was_set() might have changed base->offset of any of
465 * the clock bases so the result might be negative. Fix it up
466 * to prevent a false positive in clockevents_program_event().
467 */
468 if (expires_next.tv64 < 0)
469 expires_next.tv64 = 0;
470 return expires_next;
471}
472#endif
473
54cdfdb4
TG
474/* High resolution timer related functions */
475#ifdef CONFIG_HIGH_RES_TIMERS
476
477/*
478 * High resolution timer enabled ?
479 */
480static int hrtimer_hres_enabled __read_mostly = 1;
481
482/*
483 * Enable / Disable high resolution mode
484 */
485static int __init setup_hrtimer_hres(char *str)
486{
487 if (!strcmp(str, "off"))
488 hrtimer_hres_enabled = 0;
489 else if (!strcmp(str, "on"))
490 hrtimer_hres_enabled = 1;
491 else
492 return 0;
493 return 1;
494}
495
496__setup("highres=", setup_hrtimer_hres);
497
498/*
499 * hrtimer_high_res_enabled - query, if the highres mode is enabled
500 */
501static inline int hrtimer_is_hres_enabled(void)
502{
503 return hrtimer_hres_enabled;
504}
505
506/*
507 * Is the high resolution mode active ?
508 */
509static inline int hrtimer_hres_active(void)
510{
909ea964 511 return __this_cpu_read(hrtimer_bases.hres_active);
54cdfdb4
TG
512}
513
514/*
515 * Reprogram the event source with checking both queues for the
516 * next event
517 * Called with interrupts disabled and base->lock held
518 */
7403f41f
AC
519static void
520hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
54cdfdb4 521{
9bc74919 522 ktime_t expires_next = __hrtimer_get_next_event(cpu_base);
54cdfdb4 523
7403f41f
AC
524 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
525 return;
526
527 cpu_base->expires_next.tv64 = expires_next.tv64;
528
6c6c0d5a
SH
529 /*
530 * If a hang was detected in the last timer interrupt then we
531 * leave the hang delay active in the hardware. We want the
532 * system to make progress. That also prevents the following
533 * scenario:
534 * T1 expires 50ms from now
535 * T2 expires 5s from now
536 *
537 * T1 is removed, so this code is called and would reprogram
538 * the hardware to 5s from now. Any hrtimer_start after that
539 * will not reprogram the hardware due to hang_detected being
540 * set. So we'd effectivly block all timers until the T2 event
541 * fires.
542 */
543 if (cpu_base->hang_detected)
544 return;
545
54cdfdb4
TG
546 if (cpu_base->expires_next.tv64 != KTIME_MAX)
547 tick_program_event(cpu_base->expires_next, 1);
548}
549
550/*
551 * Shared reprogramming for clock_realtime and clock_monotonic
552 *
553 * When a timer is enqueued and expires earlier than the already enqueued
554 * timers, we have to check, whether it expires earlier than the timer for
555 * which the clock event device was armed.
556 *
9e1e01dd
VK
557 * Note, that in case the state has HRTIMER_STATE_CALLBACK set, no reprogramming
558 * and no expiry check happens. The timer gets enqueued into the rbtree. The
559 * reprogramming and expiry check is done in the hrtimer_interrupt or in the
560 * softirq.
561 *
54cdfdb4
TG
562 * Called with interrupts disabled and base->cpu_base.lock held
563 */
564static int hrtimer_reprogram(struct hrtimer *timer,
565 struct hrtimer_clock_base *base)
566{
dc5df73b 567 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
cc584b21 568 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
54cdfdb4
TG
569 int res;
570
cc584b21 571 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
63070a79 572
54cdfdb4
TG
573 /*
574 * When the callback is running, we do not reprogram the clock event
575 * device. The timer callback is either running on a different CPU or
3a4fa0a2 576 * the callback is executed in the hrtimer_interrupt context. The
54cdfdb4
TG
577 * reprogramming is handled either by the softirq, which called the
578 * callback or at the end of the hrtimer_interrupt.
579 */
580 if (hrtimer_callback_running(timer))
581 return 0;
582
63070a79
TG
583 /*
584 * CLOCK_REALTIME timer might be requested with an absolute
585 * expiry time which is less than base->offset. Nothing wrong
586 * about that, just avoid to call into the tick code, which
587 * has now objections against negative expiry values.
588 */
589 if (expires.tv64 < 0)
590 return -ETIME;
591
41d2e494
TG
592 if (expires.tv64 >= cpu_base->expires_next.tv64)
593 return 0;
594
9bc74919
TG
595 /*
596 * When the target cpu of the timer is currently executing
597 * hrtimer_interrupt(), then we do not touch the clock event
598 * device. hrtimer_interrupt() will reevaluate all clock bases
599 * before reprogramming the device.
600 */
601 if (cpu_base->in_hrtirq)
602 return 0;
603
41d2e494
TG
604 /*
605 * If a hang was detected in the last timer interrupt then we
606 * do not schedule a timer which is earlier than the expiry
607 * which we enforced in the hang detection. We want the system
608 * to make progress.
609 */
610 if (cpu_base->hang_detected)
54cdfdb4
TG
611 return 0;
612
613 /*
614 * Clockevents returns -ETIME, when the event was in the past.
615 */
616 res = tick_program_event(expires, 0);
617 if (!IS_ERR_VALUE(res))
41d2e494 618 cpu_base->expires_next = expires;
54cdfdb4
TG
619 return res;
620}
621
54cdfdb4
TG
622/*
623 * Initialize the high resolution related parts of cpu_base
624 */
625static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
626{
627 base->expires_next.tv64 = KTIME_MAX;
628 base->hres_active = 0;
54cdfdb4
TG
629}
630
5baefd6d
JS
631static inline ktime_t hrtimer_update_base(struct hrtimer_cpu_base *base)
632{
633 ktime_t *offs_real = &base->clock_base[HRTIMER_BASE_REALTIME].offset;
634 ktime_t *offs_boot = &base->clock_base[HRTIMER_BASE_BOOTTIME].offset;
90adda98 635 ktime_t *offs_tai = &base->clock_base[HRTIMER_BASE_TAI].offset;
5baefd6d 636
76f41088 637 return ktime_get_update_offsets_now(offs_real, offs_boot, offs_tai);
5baefd6d
JS
638}
639
9ec26907
TG
640/*
641 * Retrigger next event is called after clock was set
642 *
643 * Called with interrupts disabled via on_each_cpu()
644 */
645static void retrigger_next_event(void *arg)
646{
dc5df73b 647 struct hrtimer_cpu_base *base = this_cpu_ptr(&hrtimer_bases);
9ec26907
TG
648
649 if (!hrtimer_hres_active())
650 return;
651
9ec26907 652 raw_spin_lock(&base->lock);
5baefd6d 653 hrtimer_update_base(base);
9ec26907
TG
654 hrtimer_force_reprogram(base, 0);
655 raw_spin_unlock(&base->lock);
656}
b12a03ce 657
54cdfdb4
TG
658/*
659 * Switch to high resolution mode
660 */
f8953856 661static int hrtimer_switch_to_hres(void)
54cdfdb4 662{
b12a03ce 663 int i, cpu = smp_processor_id();
820de5c3 664 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
54cdfdb4
TG
665 unsigned long flags;
666
667 if (base->hres_active)
f8953856 668 return 1;
54cdfdb4
TG
669
670 local_irq_save(flags);
671
672 if (tick_init_highres()) {
673 local_irq_restore(flags);
820de5c3
IM
674 printk(KERN_WARNING "Could not switch to high resolution "
675 "mode on CPU %d\n", cpu);
f8953856 676 return 0;
54cdfdb4
TG
677 }
678 base->hres_active = 1;
b12a03ce
TG
679 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
680 base->clock_base[i].resolution = KTIME_HIGH_RES;
54cdfdb4
TG
681
682 tick_setup_sched_timer();
54cdfdb4
TG
683 /* "Retrigger" the interrupt to get things going */
684 retrigger_next_event(NULL);
685 local_irq_restore(flags);
f8953856 686 return 1;
54cdfdb4
TG
687}
688
5ec2481b
TG
689static void clock_was_set_work(struct work_struct *work)
690{
691 clock_was_set();
692}
693
694static DECLARE_WORK(hrtimer_work, clock_was_set_work);
695
f55a6faa 696/*
5ec2481b
TG
697 * Called from timekeeping and resume code to reprogramm the hrtimer
698 * interrupt device on all cpus.
f55a6faa
JS
699 */
700void clock_was_set_delayed(void)
701{
5ec2481b 702 schedule_work(&hrtimer_work);
f55a6faa
JS
703}
704
54cdfdb4
TG
705#else
706
707static inline int hrtimer_hres_active(void) { return 0; }
708static inline int hrtimer_is_hres_enabled(void) { return 0; }
f8953856 709static inline int hrtimer_switch_to_hres(void) { return 0; }
7403f41f
AC
710static inline void
711hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
9e1e01dd
VK
712static inline int hrtimer_reprogram(struct hrtimer *timer,
713 struct hrtimer_clock_base *base)
54cdfdb4
TG
714{
715 return 0;
716}
54cdfdb4 717static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
9ec26907 718static inline void retrigger_next_event(void *arg) { }
54cdfdb4
TG
719
720#endif /* CONFIG_HIGH_RES_TIMERS */
721
b12a03ce
TG
722/*
723 * Clock realtime was set
724 *
725 * Change the offset of the realtime clock vs. the monotonic
726 * clock.
727 *
728 * We might have to reprogram the high resolution timer interrupt. On
729 * SMP we call the architecture specific code to retrigger _all_ high
730 * resolution timer interrupts. On UP we just disable interrupts and
731 * call the high resolution interrupt code.
732 */
733void clock_was_set(void)
734{
90ff1f30 735#ifdef CONFIG_HIGH_RES_TIMERS
b12a03ce
TG
736 /* Retrigger the CPU local events everywhere */
737 on_each_cpu(retrigger_next_event, NULL, 1);
9ec26907
TG
738#endif
739 timerfd_clock_was_set();
b12a03ce
TG
740}
741
742/*
743 * During resume we might have to reprogram the high resolution timer
7c4c3a0f
DV
744 * interrupt on all online CPUs. However, all other CPUs will be
745 * stopped with IRQs interrupts disabled so the clock_was_set() call
5ec2481b 746 * must be deferred.
b12a03ce
TG
747 */
748void hrtimers_resume(void)
749{
750 WARN_ONCE(!irqs_disabled(),
751 KERN_INFO "hrtimers_resume() called with IRQs enabled!");
752
5ec2481b 753 /* Retrigger on the local CPU */
b12a03ce 754 retrigger_next_event(NULL);
5ec2481b
TG
755 /* And schedule a retrigger for all others */
756 clock_was_set_delayed();
b12a03ce
TG
757}
758
5f201907 759static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
82f67cd9 760{
5f201907 761#ifdef CONFIG_TIMER_STATS
82f67cd9
IM
762 if (timer->start_site)
763 return;
5f201907 764 timer->start_site = __builtin_return_address(0);
82f67cd9
IM
765 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
766 timer->start_pid = current->pid;
5f201907
HC
767#endif
768}
769
770static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
771{
772#ifdef CONFIG_TIMER_STATS
773 timer->start_site = NULL;
774#endif
82f67cd9 775}
5f201907
HC
776
777static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
778{
779#ifdef CONFIG_TIMER_STATS
780 if (likely(!timer_stats_active))
781 return;
782 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
783 timer->function, timer->start_comm, 0);
82f67cd9 784#endif
5f201907 785}
82f67cd9 786
c0a31329 787/*
6506f2aa 788 * Counterpart to lock_hrtimer_base above:
c0a31329
TG
789 */
790static inline
791void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
792{
ecb49d1a 793 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
c0a31329
TG
794}
795
796/**
797 * hrtimer_forward - forward the timer expiry
c0a31329 798 * @timer: hrtimer to forward
44f21475 799 * @now: forward past this time
c0a31329
TG
800 * @interval: the interval to forward
801 *
802 * Forward the timer expiry so it will expire in the future.
8dca6f33 803 * Returns the number of overruns.
c0a31329 804 */
4d672e7a 805u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
c0a31329 806{
4d672e7a 807 u64 orun = 1;
44f21475 808 ktime_t delta;
c0a31329 809
cc584b21 810 delta = ktime_sub(now, hrtimer_get_expires(timer));
c0a31329
TG
811
812 if (delta.tv64 < 0)
813 return 0;
814
c9db4fa1
TG
815 if (interval.tv64 < timer->base->resolution.tv64)
816 interval.tv64 = timer->base->resolution.tv64;
817
c0a31329 818 if (unlikely(delta.tv64 >= interval.tv64)) {
df869b63 819 s64 incr = ktime_to_ns(interval);
c0a31329
TG
820
821 orun = ktime_divns(delta, incr);
cc584b21
AV
822 hrtimer_add_expires_ns(timer, incr * orun);
823 if (hrtimer_get_expires_tv64(timer) > now.tv64)
c0a31329
TG
824 return orun;
825 /*
826 * This (and the ktime_add() below) is the
827 * correction for exact:
828 */
829 orun++;
830 }
cc584b21 831 hrtimer_add_expires(timer, interval);
c0a31329
TG
832
833 return orun;
834}
6bdb6b62 835EXPORT_SYMBOL_GPL(hrtimer_forward);
c0a31329
TG
836
837/*
838 * enqueue_hrtimer - internal function to (re)start a timer
839 *
840 * The timer is inserted in expiry order. Insertion into the
841 * red black tree is O(log(n)). Must hold the base lock.
a6037b61
PZ
842 *
843 * Returns 1 when the new timer is the leftmost timer in the tree.
c0a31329 844 */
a6037b61
PZ
845static int enqueue_hrtimer(struct hrtimer *timer,
846 struct hrtimer_clock_base *base)
c0a31329 847{
c6a2a177 848 debug_activate(timer);
237fc6e7 849
998adc3d 850 timerqueue_add(&base->active, &timer->node);
ab8177bc 851 base->cpu_base->active_bases |= 1 << base->index;
54cdfdb4 852
303e967f
TG
853 /*
854 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
855 * state of a possibly running callback.
856 */
857 timer->state |= HRTIMER_STATE_ENQUEUED;
a6037b61 858
998adc3d 859 return (&timer->node == base->active.next);
288867ec 860}
c0a31329
TG
861
862/*
863 * __remove_hrtimer - internal function to remove a timer
864 *
865 * Caller must hold the base lock.
54cdfdb4
TG
866 *
867 * High resolution timer mode reprograms the clock event device when the
868 * timer is the one which expires next. The caller can disable this by setting
869 * reprogram to zero. This is useful, when the context does a reprogramming
870 * anyway (e.g. timer interrupt)
c0a31329 871 */
3c8aa39d 872static void __remove_hrtimer(struct hrtimer *timer,
303e967f 873 struct hrtimer_clock_base *base,
54cdfdb4 874 unsigned long newstate, int reprogram)
c0a31329 875{
27c9cd7e 876 struct timerqueue_node *next_timer;
7403f41f
AC
877 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
878 goto out;
879
27c9cd7e
JO
880 next_timer = timerqueue_getnext(&base->active);
881 timerqueue_del(&base->active, &timer->node);
882 if (&timer->node == next_timer) {
7403f41f
AC
883#ifdef CONFIG_HIGH_RES_TIMERS
884 /* Reprogram the clock event device. if enabled */
885 if (reprogram && hrtimer_hres_active()) {
886 ktime_t expires;
887
888 expires = ktime_sub(hrtimer_get_expires(timer),
889 base->offset);
890 if (base->cpu_base->expires_next.tv64 == expires.tv64)
891 hrtimer_force_reprogram(base->cpu_base, 1);
54cdfdb4 892 }
7403f41f 893#endif
54cdfdb4 894 }
ab8177bc
TG
895 if (!timerqueue_getnext(&base->active))
896 base->cpu_base->active_bases &= ~(1 << base->index);
7403f41f 897out:
303e967f 898 timer->state = newstate;
c0a31329
TG
899}
900
901/*
902 * remove hrtimer, called with base lock held
903 */
904static inline int
3c8aa39d 905remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
c0a31329 906{
303e967f 907 if (hrtimer_is_queued(timer)) {
f13d4f97 908 unsigned long state;
54cdfdb4
TG
909 int reprogram;
910
911 /*
912 * Remove the timer and force reprogramming when high
913 * resolution mode is active and the timer is on the current
914 * CPU. If we remove a timer on another CPU, reprogramming is
915 * skipped. The interrupt event on this CPU is fired and
916 * reprogramming happens in the interrupt handler. This is a
917 * rare case and less expensive than a smp call.
918 */
c6a2a177 919 debug_deactivate(timer);
82f67cd9 920 timer_stats_hrtimer_clear_start_info(timer);
dc5df73b 921 reprogram = base->cpu_base == this_cpu_ptr(&hrtimer_bases);
f13d4f97
SQ
922 /*
923 * We must preserve the CALLBACK state flag here,
924 * otherwise we could move the timer base in
925 * switch_hrtimer_base.
926 */
927 state = timer->state & HRTIMER_STATE_CALLBACK;
928 __remove_hrtimer(timer, base, state, reprogram);
c0a31329
TG
929 return 1;
930 }
931 return 0;
932}
933
7f1e2ca9
PZ
934int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
935 unsigned long delta_ns, const enum hrtimer_mode mode,
936 int wakeup)
c0a31329 937{
3c8aa39d 938 struct hrtimer_clock_base *base, *new_base;
c0a31329 939 unsigned long flags;
a6037b61 940 int ret, leftmost;
c0a31329
TG
941
942 base = lock_hrtimer_base(timer, &flags);
943
944 /* Remove an active timer from the queue: */
945 ret = remove_hrtimer(timer, base);
946
597d0275 947 if (mode & HRTIMER_MODE_REL) {
84ea7fe3 948 tim = ktime_add_safe(tim, base->get_time());
06027bdd
IM
949 /*
950 * CONFIG_TIME_LOW_RES is a temporary way for architectures
951 * to signal that they simply return xtime in
952 * do_gettimeoffset(). In this case we want to round up by
953 * resolution when starting a relative timer, to avoid short
954 * timeouts. This will go away with the GTOD framework.
955 */
956#ifdef CONFIG_TIME_LOW_RES
5a7780e7 957 tim = ktime_add_safe(tim, base->resolution);
06027bdd
IM
958#endif
959 }
237fc6e7 960
da8f2e17 961 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
c0a31329 962
84ea7fe3
VK
963 /* Switch the timer base, if necessary: */
964 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
965
82f67cd9
IM
966 timer_stats_hrtimer_set_start_info(timer);
967
a6037b61
PZ
968 leftmost = enqueue_hrtimer(timer, new_base);
969
49a2a075
VK
970 if (!leftmost) {
971 unlock_hrtimer_base(timer, &flags);
972 return ret;
973 }
974
975 if (!hrtimer_is_hres_active(timer)) {
976 /*
977 * Kick to reschedule the next tick to handle the new timer
978 * on dynticks target.
979 */
980 wake_up_nohz_cpu(new_base->cpu_base->cpu);
dc5df73b 981 } else if (new_base->cpu_base == this_cpu_ptr(&hrtimer_bases) &&
9e1e01dd 982 hrtimer_reprogram(timer, new_base)) {
49a2a075
VK
983 /*
984 * Only allow reprogramming if the new base is on this CPU.
985 * (it might still be on another CPU if the timer was pending)
986 *
987 * XXX send_remote_softirq() ?
988 */
b22affe0
LS
989 if (wakeup) {
990 /*
991 * We need to drop cpu_base->lock to avoid a
992 * lock ordering issue vs. rq->lock.
993 */
994 raw_spin_unlock(&new_base->cpu_base->lock);
995 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
996 local_irq_restore(flags);
997 return ret;
998 } else {
999 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1000 }
1001 }
c0a31329
TG
1002
1003 unlock_hrtimer_base(timer, &flags);
1004
1005 return ret;
1006}
8588a2bb 1007EXPORT_SYMBOL_GPL(__hrtimer_start_range_ns);
7f1e2ca9
PZ
1008
1009/**
1010 * hrtimer_start_range_ns - (re)start an hrtimer on the current CPU
1011 * @timer: the timer to be added
1012 * @tim: expiry time
1013 * @delta_ns: "slack" range for the timer
8ffbc7d9
DD
1014 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1015 * relative (HRTIMER_MODE_REL)
7f1e2ca9
PZ
1016 *
1017 * Returns:
1018 * 0 on success
1019 * 1 when the timer was active
1020 */
1021int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1022 unsigned long delta_ns, const enum hrtimer_mode mode)
1023{
1024 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1025}
da8f2e17
AV
1026EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1027
1028/**
e1dd7bc5 1029 * hrtimer_start - (re)start an hrtimer on the current CPU
da8f2e17
AV
1030 * @timer: the timer to be added
1031 * @tim: expiry time
8ffbc7d9
DD
1032 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1033 * relative (HRTIMER_MODE_REL)
da8f2e17
AV
1034 *
1035 * Returns:
1036 * 0 on success
1037 * 1 when the timer was active
1038 */
1039int
1040hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1041{
7f1e2ca9 1042 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
da8f2e17 1043}
8d16b764 1044EXPORT_SYMBOL_GPL(hrtimer_start);
c0a31329 1045
da8f2e17 1046
c0a31329
TG
1047/**
1048 * hrtimer_try_to_cancel - try to deactivate a timer
c0a31329
TG
1049 * @timer: hrtimer to stop
1050 *
1051 * Returns:
1052 * 0 when the timer was not active
1053 * 1 when the timer was active
1054 * -1 when the timer is currently excuting the callback function and
fa9799e3 1055 * cannot be stopped
c0a31329
TG
1056 */
1057int hrtimer_try_to_cancel(struct hrtimer *timer)
1058{
3c8aa39d 1059 struct hrtimer_clock_base *base;
c0a31329
TG
1060 unsigned long flags;
1061 int ret = -1;
1062
1063 base = lock_hrtimer_base(timer, &flags);
1064
303e967f 1065 if (!hrtimer_callback_running(timer))
c0a31329
TG
1066 ret = remove_hrtimer(timer, base);
1067
1068 unlock_hrtimer_base(timer, &flags);
1069
1070 return ret;
1071
1072}
8d16b764 1073EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
c0a31329
TG
1074
1075/**
1076 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
c0a31329
TG
1077 * @timer: the timer to be cancelled
1078 *
1079 * Returns:
1080 * 0 when the timer was not active
1081 * 1 when the timer was active
1082 */
1083int hrtimer_cancel(struct hrtimer *timer)
1084{
1085 for (;;) {
1086 int ret = hrtimer_try_to_cancel(timer);
1087
1088 if (ret >= 0)
1089 return ret;
5ef37b19 1090 cpu_relax();
c0a31329
TG
1091 }
1092}
8d16b764 1093EXPORT_SYMBOL_GPL(hrtimer_cancel);
c0a31329
TG
1094
1095/**
1096 * hrtimer_get_remaining - get remaining time for the timer
c0a31329
TG
1097 * @timer: the timer to read
1098 */
1099ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1100{
c0a31329
TG
1101 unsigned long flags;
1102 ktime_t rem;
1103
b3bd3de6 1104 lock_hrtimer_base(timer, &flags);
cc584b21 1105 rem = hrtimer_expires_remaining(timer);
c0a31329
TG
1106 unlock_hrtimer_base(timer, &flags);
1107
1108 return rem;
1109}
8d16b764 1110EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
c0a31329 1111
3451d024 1112#ifdef CONFIG_NO_HZ_COMMON
69239749
TL
1113/**
1114 * hrtimer_get_next_event - get the time until next expiry event
1115 *
1116 * Returns the delta to the next expiry event or KTIME_MAX if no timer
1117 * is pending.
1118 */
1119ktime_t hrtimer_get_next_event(void)
1120{
dc5df73b 1121 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
9bc74919 1122 ktime_t mindelta = { .tv64 = KTIME_MAX };
69239749 1123 unsigned long flags;
69239749 1124
ecb49d1a 1125 raw_spin_lock_irqsave(&cpu_base->lock, flags);
3c8aa39d 1126
9bc74919
TG
1127 if (!hrtimer_hres_active())
1128 mindelta = ktime_sub(__hrtimer_get_next_event(cpu_base),
1129 ktime_get());
3c8aa39d 1130
ecb49d1a 1131 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
3c8aa39d 1132
69239749
TL
1133 if (mindelta.tv64 < 0)
1134 mindelta.tv64 = 0;
1135 return mindelta;
1136}
1137#endif
1138
237fc6e7
TG
1139static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1140 enum hrtimer_mode mode)
c0a31329 1141{
3c8aa39d 1142 struct hrtimer_cpu_base *cpu_base;
e06383db 1143 int base;
c0a31329 1144
7978672c
GA
1145 memset(timer, 0, sizeof(struct hrtimer));
1146
22127e93 1147 cpu_base = raw_cpu_ptr(&hrtimer_bases);
c0a31329 1148
c9cb2e3d 1149 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
7978672c
GA
1150 clock_id = CLOCK_MONOTONIC;
1151
e06383db
JS
1152 base = hrtimer_clockid_to_base(clock_id);
1153 timer->base = &cpu_base->clock_base[base];
998adc3d 1154 timerqueue_init(&timer->node);
82f67cd9
IM
1155
1156#ifdef CONFIG_TIMER_STATS
1157 timer->start_site = NULL;
1158 timer->start_pid = -1;
1159 memset(timer->start_comm, 0, TASK_COMM_LEN);
1160#endif
c0a31329 1161}
237fc6e7
TG
1162
1163/**
1164 * hrtimer_init - initialize a timer to the given clock
1165 * @timer: the timer to be initialized
1166 * @clock_id: the clock to be used
1167 * @mode: timer mode abs/rel
1168 */
1169void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1170 enum hrtimer_mode mode)
1171{
c6a2a177 1172 debug_init(timer, clock_id, mode);
237fc6e7
TG
1173 __hrtimer_init(timer, clock_id, mode);
1174}
8d16b764 1175EXPORT_SYMBOL_GPL(hrtimer_init);
c0a31329
TG
1176
1177/**
1178 * hrtimer_get_res - get the timer resolution for a clock
c0a31329
TG
1179 * @which_clock: which clock to query
1180 * @tp: pointer to timespec variable to store the resolution
1181 *
72fd4a35
RD
1182 * Store the resolution of the clock selected by @which_clock in the
1183 * variable pointed to by @tp.
c0a31329
TG
1184 */
1185int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1186{
3c8aa39d 1187 struct hrtimer_cpu_base *cpu_base;
e06383db 1188 int base = hrtimer_clockid_to_base(which_clock);
c0a31329 1189
22127e93 1190 cpu_base = raw_cpu_ptr(&hrtimer_bases);
e06383db 1191 *tp = ktime_to_timespec(cpu_base->clock_base[base].resolution);
c0a31329
TG
1192
1193 return 0;
1194}
8d16b764 1195EXPORT_SYMBOL_GPL(hrtimer_get_res);
c0a31329 1196
c6a2a177 1197static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
d3d74453
PZ
1198{
1199 struct hrtimer_clock_base *base = timer->base;
1200 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1201 enum hrtimer_restart (*fn)(struct hrtimer *);
1202 int restart;
1203
ca109491
PZ
1204 WARN_ON(!irqs_disabled());
1205
c6a2a177 1206 debug_deactivate(timer);
d3d74453
PZ
1207 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1208 timer_stats_account_hrtimer(timer);
d3d74453 1209 fn = timer->function;
ca109491
PZ
1210
1211 /*
1212 * Because we run timers from hardirq context, there is no chance
1213 * they get migrated to another cpu, therefore its safe to unlock
1214 * the timer base.
1215 */
ecb49d1a 1216 raw_spin_unlock(&cpu_base->lock);
c6a2a177 1217 trace_hrtimer_expire_entry(timer, now);
ca109491 1218 restart = fn(timer);
c6a2a177 1219 trace_hrtimer_expire_exit(timer);
ecb49d1a 1220 raw_spin_lock(&cpu_base->lock);
d3d74453
PZ
1221
1222 /*
e3f1d883
TG
1223 * Note: We clear the CALLBACK bit after enqueue_hrtimer and
1224 * we do not reprogramm the event hardware. Happens either in
1225 * hrtimer_start_range_ns() or in hrtimer_interrupt()
d3d74453
PZ
1226 */
1227 if (restart != HRTIMER_NORESTART) {
1228 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
a6037b61 1229 enqueue_hrtimer(timer, base);
d3d74453 1230 }
f13d4f97
SQ
1231
1232 WARN_ON_ONCE(!(timer->state & HRTIMER_STATE_CALLBACK));
1233
d3d74453
PZ
1234 timer->state &= ~HRTIMER_STATE_CALLBACK;
1235}
1236
54cdfdb4
TG
1237#ifdef CONFIG_HIGH_RES_TIMERS
1238
1239/*
1240 * High resolution timer interrupt
1241 * Called with interrupts disabled
1242 */
1243void hrtimer_interrupt(struct clock_event_device *dev)
1244{
dc5df73b 1245 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
41d2e494
TG
1246 ktime_t expires_next, now, entry_time, delta;
1247 int i, retries = 0;
54cdfdb4
TG
1248
1249 BUG_ON(!cpu_base->hres_active);
1250 cpu_base->nr_events++;
1251 dev->next_event.tv64 = KTIME_MAX;
1252
196951e9 1253 raw_spin_lock(&cpu_base->lock);
5baefd6d 1254 entry_time = now = hrtimer_update_base(cpu_base);
41d2e494 1255retry:
9bc74919 1256 cpu_base->in_hrtirq = 1;
6ff7041d
TG
1257 /*
1258 * We set expires_next to KTIME_MAX here with cpu_base->lock
1259 * held to prevent that a timer is enqueued in our queue via
1260 * the migration code. This does not affect enqueueing of
1261 * timers which run their callback and need to be requeued on
1262 * this CPU.
1263 */
1264 cpu_base->expires_next.tv64 = KTIME_MAX;
1265
54cdfdb4 1266 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
ab8177bc 1267 struct hrtimer_clock_base *base;
998adc3d 1268 struct timerqueue_node *node;
ab8177bc
TG
1269 ktime_t basenow;
1270
1271 if (!(cpu_base->active_bases & (1 << i)))
1272 continue;
54cdfdb4 1273
ab8177bc 1274 base = cpu_base->clock_base + i;
54cdfdb4
TG
1275 basenow = ktime_add(now, base->offset);
1276
998adc3d 1277 while ((node = timerqueue_getnext(&base->active))) {
54cdfdb4
TG
1278 struct hrtimer *timer;
1279
998adc3d 1280 timer = container_of(node, struct hrtimer, node);
54cdfdb4 1281
654c8e0b
AV
1282 /*
1283 * The immediate goal for using the softexpires is
1284 * minimizing wakeups, not running timers at the
1285 * earliest interrupt after their soft expiration.
1286 * This allows us to avoid using a Priority Search
1287 * Tree, which can answer a stabbing querry for
1288 * overlapping intervals and instead use the simple
1289 * BST we already have.
1290 * We don't add extra wakeups by delaying timers that
1291 * are right-of a not yet expired timer, because that
1292 * timer will have to trigger a wakeup anyway.
1293 */
9bc74919 1294 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer))
54cdfdb4 1295 break;
54cdfdb4 1296
c6a2a177 1297 __run_hrtimer(timer, &basenow);
54cdfdb4 1298 }
54cdfdb4 1299 }
9bc74919
TG
1300 /* Reevaluate the clock bases for the next expiry */
1301 expires_next = __hrtimer_get_next_event(cpu_base);
6ff7041d
TG
1302 /*
1303 * Store the new expiry value so the migration code can verify
1304 * against it.
1305 */
54cdfdb4 1306 cpu_base->expires_next = expires_next;
9bc74919 1307 cpu_base->in_hrtirq = 0;
ecb49d1a 1308 raw_spin_unlock(&cpu_base->lock);
54cdfdb4
TG
1309
1310 /* Reprogramming necessary ? */
41d2e494
TG
1311 if (expires_next.tv64 == KTIME_MAX ||
1312 !tick_program_event(expires_next, 0)) {
1313 cpu_base->hang_detected = 0;
1314 return;
54cdfdb4 1315 }
41d2e494
TG
1316
1317 /*
1318 * The next timer was already expired due to:
1319 * - tracing
1320 * - long lasting callbacks
1321 * - being scheduled away when running in a VM
1322 *
1323 * We need to prevent that we loop forever in the hrtimer
1324 * interrupt routine. We give it 3 attempts to avoid
1325 * overreacting on some spurious event.
5baefd6d
JS
1326 *
1327 * Acquire base lock for updating the offsets and retrieving
1328 * the current time.
41d2e494 1329 */
196951e9 1330 raw_spin_lock(&cpu_base->lock);
5baefd6d 1331 now = hrtimer_update_base(cpu_base);
41d2e494
TG
1332 cpu_base->nr_retries++;
1333 if (++retries < 3)
1334 goto retry;
1335 /*
1336 * Give the system a chance to do something else than looping
1337 * here. We stored the entry time, so we know exactly how long
1338 * we spent here. We schedule the next event this amount of
1339 * time away.
1340 */
1341 cpu_base->nr_hangs++;
1342 cpu_base->hang_detected = 1;
196951e9 1343 raw_spin_unlock(&cpu_base->lock);
41d2e494
TG
1344 delta = ktime_sub(now, entry_time);
1345 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1346 cpu_base->max_hang_time = delta;
1347 /*
1348 * Limit it to a sensible value as we enforce a longer
1349 * delay. Give the CPU at least 100ms to catch up.
1350 */
1351 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1352 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1353 else
1354 expires_next = ktime_add(now, delta);
1355 tick_program_event(expires_next, 1);
1356 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1357 ktime_to_ns(delta));
54cdfdb4
TG
1358}
1359
8bdec955
TG
1360/*
1361 * local version of hrtimer_peek_ahead_timers() called with interrupts
1362 * disabled.
1363 */
1364static void __hrtimer_peek_ahead_timers(void)
1365{
1366 struct tick_device *td;
1367
1368 if (!hrtimer_hres_active())
1369 return;
1370
22127e93 1371 td = this_cpu_ptr(&tick_cpu_device);
8bdec955
TG
1372 if (td && td->evtdev)
1373 hrtimer_interrupt(td->evtdev);
1374}
1375
2e94d1f7
AV
1376/**
1377 * hrtimer_peek_ahead_timers -- run soft-expired timers now
1378 *
1379 * hrtimer_peek_ahead_timers will peek at the timer queue of
1380 * the current cpu and check if there are any timers for which
1381 * the soft expires time has passed. If any such timers exist,
1382 * they are run immediately and then removed from the timer queue.
1383 *
1384 */
1385void hrtimer_peek_ahead_timers(void)
1386{
643bdf68 1387 unsigned long flags;
dc4304f7 1388
2e94d1f7 1389 local_irq_save(flags);
8bdec955 1390 __hrtimer_peek_ahead_timers();
2e94d1f7
AV
1391 local_irq_restore(flags);
1392}
1393
a6037b61
PZ
1394static void run_hrtimer_softirq(struct softirq_action *h)
1395{
1396 hrtimer_peek_ahead_timers();
1397}
1398
82c5b7b5
IM
1399#else /* CONFIG_HIGH_RES_TIMERS */
1400
1401static inline void __hrtimer_peek_ahead_timers(void) { }
1402
1403#endif /* !CONFIG_HIGH_RES_TIMERS */
82f67cd9 1404
d3d74453
PZ
1405/*
1406 * Called from timer softirq every jiffy, expire hrtimers:
1407 *
1408 * For HRT its the fall back code to run the softirq in the timer
1409 * softirq context in case the hrtimer initialization failed or has
1410 * not been done yet.
1411 */
1412void hrtimer_run_pending(void)
1413{
d3d74453
PZ
1414 if (hrtimer_hres_active())
1415 return;
54cdfdb4 1416
d3d74453
PZ
1417 /*
1418 * This _is_ ugly: We have to check in the softirq context,
1419 * whether we can switch to highres and / or nohz mode. The
1420 * clocksource switch happens in the timer interrupt with
1421 * xtime_lock held. Notification from there only sets the
1422 * check bit in the tick_oneshot code, otherwise we might
1423 * deadlock vs. xtime_lock.
1424 */
1425 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
1426 hrtimer_switch_to_hres();
54cdfdb4
TG
1427}
1428
c0a31329 1429/*
d3d74453 1430 * Called from hardirq context every jiffy
c0a31329 1431 */
833883d9 1432void hrtimer_run_queues(void)
c0a31329 1433{
998adc3d 1434 struct timerqueue_node *node;
dc5df73b 1435 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
833883d9
DS
1436 struct hrtimer_clock_base *base;
1437 int index, gettime = 1;
c0a31329 1438
833883d9 1439 if (hrtimer_hres_active())
3055adda
DS
1440 return;
1441
833883d9
DS
1442 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1443 base = &cpu_base->clock_base[index];
b007c389 1444 if (!timerqueue_getnext(&base->active))
d3d74453 1445 continue;
833883d9 1446
d7cfb60c 1447 if (gettime) {
833883d9
DS
1448 hrtimer_get_softirq_time(cpu_base);
1449 gettime = 0;
b75f7a51 1450 }
d3d74453 1451
ecb49d1a 1452 raw_spin_lock(&cpu_base->lock);
c0a31329 1453
b007c389 1454 while ((node = timerqueue_getnext(&base->active))) {
833883d9 1455 struct hrtimer *timer;
54cdfdb4 1456
998adc3d 1457 timer = container_of(node, struct hrtimer, node);
cc584b21
AV
1458 if (base->softirq_time.tv64 <=
1459 hrtimer_get_expires_tv64(timer))
833883d9
DS
1460 break;
1461
c6a2a177 1462 __run_hrtimer(timer, &base->softirq_time);
833883d9 1463 }
ecb49d1a 1464 raw_spin_unlock(&cpu_base->lock);
833883d9 1465 }
c0a31329
TG
1466}
1467
10c94ec1
TG
1468/*
1469 * Sleep related functions:
1470 */
c9cb2e3d 1471static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
00362e33
TG
1472{
1473 struct hrtimer_sleeper *t =
1474 container_of(timer, struct hrtimer_sleeper, timer);
1475 struct task_struct *task = t->task;
1476
1477 t->task = NULL;
1478 if (task)
1479 wake_up_process(task);
1480
1481 return HRTIMER_NORESTART;
1482}
1483
36c8b586 1484void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
00362e33
TG
1485{
1486 sl->timer.function = hrtimer_wakeup;
1487 sl->task = task;
1488}
2bc481cf 1489EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
00362e33 1490
669d7868 1491static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
432569bb 1492{
669d7868 1493 hrtimer_init_sleeper(t, current);
10c94ec1 1494
432569bb
RZ
1495 do {
1496 set_current_state(TASK_INTERRUPTIBLE);
cc584b21 1497 hrtimer_start_expires(&t->timer, mode);
37bb6cb4
PZ
1498 if (!hrtimer_active(&t->timer))
1499 t->task = NULL;
432569bb 1500
54cdfdb4 1501 if (likely(t->task))
b0f8c44f 1502 freezable_schedule();
432569bb 1503
669d7868 1504 hrtimer_cancel(&t->timer);
c9cb2e3d 1505 mode = HRTIMER_MODE_ABS;
669d7868
TG
1506
1507 } while (t->task && !signal_pending(current));
432569bb 1508
3588a085
PZ
1509 __set_current_state(TASK_RUNNING);
1510
669d7868 1511 return t->task == NULL;
10c94ec1
TG
1512}
1513
080344b9
ON
1514static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1515{
1516 struct timespec rmt;
1517 ktime_t rem;
1518
cc584b21 1519 rem = hrtimer_expires_remaining(timer);
080344b9
ON
1520 if (rem.tv64 <= 0)
1521 return 0;
1522 rmt = ktime_to_timespec(rem);
1523
1524 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1525 return -EFAULT;
1526
1527 return 1;
1528}
1529
1711ef38 1530long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
10c94ec1 1531{
669d7868 1532 struct hrtimer_sleeper t;
080344b9 1533 struct timespec __user *rmtp;
237fc6e7 1534 int ret = 0;
10c94ec1 1535
ab8177bc 1536 hrtimer_init_on_stack(&t.timer, restart->nanosleep.clockid,
237fc6e7 1537 HRTIMER_MODE_ABS);
cc584b21 1538 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
10c94ec1 1539
c9cb2e3d 1540 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
237fc6e7 1541 goto out;
10c94ec1 1542
029a07e0 1543 rmtp = restart->nanosleep.rmtp;
432569bb 1544 if (rmtp) {
237fc6e7 1545 ret = update_rmtp(&t.timer, rmtp);
080344b9 1546 if (ret <= 0)
237fc6e7 1547 goto out;
432569bb 1548 }
10c94ec1 1549
10c94ec1 1550 /* The other values in restart are already filled in */
237fc6e7
TG
1551 ret = -ERESTART_RESTARTBLOCK;
1552out:
1553 destroy_hrtimer_on_stack(&t.timer);
1554 return ret;
10c94ec1
TG
1555}
1556
080344b9 1557long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
10c94ec1
TG
1558 const enum hrtimer_mode mode, const clockid_t clockid)
1559{
1560 struct restart_block *restart;
669d7868 1561 struct hrtimer_sleeper t;
237fc6e7 1562 int ret = 0;
3bd01206
AV
1563 unsigned long slack;
1564
1565 slack = current->timer_slack_ns;
aab03e05 1566 if (dl_task(current) || rt_task(current))
3bd01206 1567 slack = 0;
10c94ec1 1568
237fc6e7 1569 hrtimer_init_on_stack(&t.timer, clockid, mode);
3bd01206 1570 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
432569bb 1571 if (do_nanosleep(&t, mode))
237fc6e7 1572 goto out;
10c94ec1 1573
7978672c 1574 /* Absolute timers do not update the rmtp value and restart: */
237fc6e7
TG
1575 if (mode == HRTIMER_MODE_ABS) {
1576 ret = -ERESTARTNOHAND;
1577 goto out;
1578 }
10c94ec1 1579
432569bb 1580 if (rmtp) {
237fc6e7 1581 ret = update_rmtp(&t.timer, rmtp);
080344b9 1582 if (ret <= 0)
237fc6e7 1583 goto out;
432569bb 1584 }
10c94ec1 1585
f56141e3 1586 restart = &current->restart_block;
1711ef38 1587 restart->fn = hrtimer_nanosleep_restart;
ab8177bc 1588 restart->nanosleep.clockid = t.timer.base->clockid;
029a07e0 1589 restart->nanosleep.rmtp = rmtp;
cc584b21 1590 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
10c94ec1 1591
237fc6e7
TG
1592 ret = -ERESTART_RESTARTBLOCK;
1593out:
1594 destroy_hrtimer_on_stack(&t.timer);
1595 return ret;
10c94ec1
TG
1596}
1597
58fd3aa2
HC
1598SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1599 struct timespec __user *, rmtp)
6ba1b912 1600{
080344b9 1601 struct timespec tu;
6ba1b912
TG
1602
1603 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1604 return -EFAULT;
1605
1606 if (!timespec_valid(&tu))
1607 return -EINVAL;
1608
080344b9 1609 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
6ba1b912
TG
1610}
1611
c0a31329
TG
1612/*
1613 * Functions related to boot-time initialization:
1614 */
0db0628d 1615static void init_hrtimers_cpu(int cpu)
c0a31329 1616{
3c8aa39d 1617 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
c0a31329
TG
1618 int i;
1619
998adc3d 1620 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
3c8aa39d 1621 cpu_base->clock_base[i].cpu_base = cpu_base;
998adc3d
JS
1622 timerqueue_init_head(&cpu_base->clock_base[i].active);
1623 }
3c8aa39d 1624
cddd0248 1625 cpu_base->cpu = cpu;
54cdfdb4 1626 hrtimer_init_hres(cpu_base);
c0a31329
TG
1627}
1628
1629#ifdef CONFIG_HOTPLUG_CPU
1630
ca109491 1631static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
37810659 1632 struct hrtimer_clock_base *new_base)
c0a31329
TG
1633{
1634 struct hrtimer *timer;
998adc3d 1635 struct timerqueue_node *node;
c0a31329 1636
998adc3d
JS
1637 while ((node = timerqueue_getnext(&old_base->active))) {
1638 timer = container_of(node, struct hrtimer, node);
54cdfdb4 1639 BUG_ON(hrtimer_callback_running(timer));
c6a2a177 1640 debug_deactivate(timer);
b00c1a99
TG
1641
1642 /*
1643 * Mark it as STATE_MIGRATE not INACTIVE otherwise the
1644 * timer could be seen as !active and just vanish away
1645 * under us on another CPU
1646 */
1647 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
c0a31329 1648 timer->base = new_base;
54cdfdb4 1649 /*
e3f1d883
TG
1650 * Enqueue the timers on the new cpu. This does not
1651 * reprogram the event device in case the timer
1652 * expires before the earliest on this CPU, but we run
1653 * hrtimer_interrupt after we migrated everything to
1654 * sort out already expired timers and reprogram the
1655 * event device.
54cdfdb4 1656 */
a6037b61 1657 enqueue_hrtimer(timer, new_base);
41e1022e 1658
b00c1a99
TG
1659 /* Clear the migration state bit */
1660 timer->state &= ~HRTIMER_STATE_MIGRATE;
c0a31329
TG
1661 }
1662}
1663
d5fd43c4 1664static void migrate_hrtimers(int scpu)
c0a31329 1665{
3c8aa39d 1666 struct hrtimer_cpu_base *old_base, *new_base;
731a55ba 1667 int i;
c0a31329 1668
37810659 1669 BUG_ON(cpu_online(scpu));
37810659 1670 tick_cancel_sched_timer(scpu);
731a55ba
TG
1671
1672 local_irq_disable();
1673 old_base = &per_cpu(hrtimer_bases, scpu);
dc5df73b 1674 new_base = this_cpu_ptr(&hrtimer_bases);
d82f0b0f
ON
1675 /*
1676 * The caller is globally serialized and nobody else
1677 * takes two locks at once, deadlock is not possible.
1678 */
ecb49d1a
TG
1679 raw_spin_lock(&new_base->lock);
1680 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
c0a31329 1681
3c8aa39d 1682 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
ca109491 1683 migrate_hrtimer_list(&old_base->clock_base[i],
37810659 1684 &new_base->clock_base[i]);
c0a31329
TG
1685 }
1686
ecb49d1a
TG
1687 raw_spin_unlock(&old_base->lock);
1688 raw_spin_unlock(&new_base->lock);
37810659 1689
731a55ba
TG
1690 /* Check, if we got expired work to do */
1691 __hrtimer_peek_ahead_timers();
1692 local_irq_enable();
c0a31329 1693}
37810659 1694
c0a31329
TG
1695#endif /* CONFIG_HOTPLUG_CPU */
1696
0db0628d 1697static int hrtimer_cpu_notify(struct notifier_block *self,
c0a31329
TG
1698 unsigned long action, void *hcpu)
1699{
b2e3c0ad 1700 int scpu = (long)hcpu;
c0a31329
TG
1701
1702 switch (action) {
1703
1704 case CPU_UP_PREPARE:
8bb78442 1705 case CPU_UP_PREPARE_FROZEN:
37810659 1706 init_hrtimers_cpu(scpu);
c0a31329
TG
1707 break;
1708
1709#ifdef CONFIG_HOTPLUG_CPU
1710 case CPU_DEAD:
8bb78442 1711 case CPU_DEAD_FROZEN:
d5fd43c4 1712 migrate_hrtimers(scpu);
c0a31329
TG
1713 break;
1714#endif
1715
1716 default:
1717 break;
1718 }
1719
1720 return NOTIFY_OK;
1721}
1722
0db0628d 1723static struct notifier_block hrtimers_nb = {
c0a31329
TG
1724 .notifier_call = hrtimer_cpu_notify,
1725};
1726
1727void __init hrtimers_init(void)
1728{
1729 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1730 (void *)(long)smp_processor_id());
1731 register_cpu_notifier(&hrtimers_nb);
a6037b61
PZ
1732#ifdef CONFIG_HIGH_RES_TIMERS
1733 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1734#endif
c0a31329
TG
1735}
1736
7bb67439 1737/**
351b3f7a 1738 * schedule_hrtimeout_range_clock - sleep until timeout
7bb67439 1739 * @expires: timeout value (ktime_t)
654c8e0b 1740 * @delta: slack in expires timeout (ktime_t)
7bb67439 1741 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
351b3f7a 1742 * @clock: timer clock, CLOCK_MONOTONIC or CLOCK_REALTIME
7bb67439 1743 */
351b3f7a
CE
1744int __sched
1745schedule_hrtimeout_range_clock(ktime_t *expires, unsigned long delta,
1746 const enum hrtimer_mode mode, int clock)
7bb67439
AV
1747{
1748 struct hrtimer_sleeper t;
1749
1750 /*
1751 * Optimize when a zero timeout value is given. It does not
1752 * matter whether this is an absolute or a relative time.
1753 */
1754 if (expires && !expires->tv64) {
1755 __set_current_state(TASK_RUNNING);
1756 return 0;
1757 }
1758
1759 /*
43b21013 1760 * A NULL parameter means "infinite"
7bb67439
AV
1761 */
1762 if (!expires) {
1763 schedule();
7bb67439
AV
1764 return -EINTR;
1765 }
1766
351b3f7a 1767 hrtimer_init_on_stack(&t.timer, clock, mode);
654c8e0b 1768 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
7bb67439
AV
1769
1770 hrtimer_init_sleeper(&t, current);
1771
cc584b21 1772 hrtimer_start_expires(&t.timer, mode);
7bb67439
AV
1773 if (!hrtimer_active(&t.timer))
1774 t.task = NULL;
1775
1776 if (likely(t.task))
1777 schedule();
1778
1779 hrtimer_cancel(&t.timer);
1780 destroy_hrtimer_on_stack(&t.timer);
1781
1782 __set_current_state(TASK_RUNNING);
1783
1784 return !t.task ? 0 : -EINTR;
1785}
351b3f7a
CE
1786
1787/**
1788 * schedule_hrtimeout_range - sleep until timeout
1789 * @expires: timeout value (ktime_t)
1790 * @delta: slack in expires timeout (ktime_t)
1791 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1792 *
1793 * Make the current task sleep until the given expiry time has
1794 * elapsed. The routine will return immediately unless
1795 * the current task state has been set (see set_current_state()).
1796 *
1797 * The @delta argument gives the kernel the freedom to schedule the
1798 * actual wakeup to a time that is both power and performance friendly.
1799 * The kernel give the normal best effort behavior for "@expires+@delta",
1800 * but may decide to fire the timer earlier, but no earlier than @expires.
1801 *
1802 * You can set the task state as follows -
1803 *
1804 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1805 * pass before the routine returns.
1806 *
1807 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1808 * delivered to the current task.
1809 *
1810 * The current task state is guaranteed to be TASK_RUNNING when this
1811 * routine returns.
1812 *
1813 * Returns 0 when the timer has expired otherwise -EINTR
1814 */
1815int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
1816 const enum hrtimer_mode mode)
1817{
1818 return schedule_hrtimeout_range_clock(expires, delta, mode,
1819 CLOCK_MONOTONIC);
1820}
654c8e0b
AV
1821EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1822
1823/**
1824 * schedule_hrtimeout - sleep until timeout
1825 * @expires: timeout value (ktime_t)
1826 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1827 *
1828 * Make the current task sleep until the given expiry time has
1829 * elapsed. The routine will return immediately unless
1830 * the current task state has been set (see set_current_state()).
1831 *
1832 * You can set the task state as follows -
1833 *
1834 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1835 * pass before the routine returns.
1836 *
1837 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1838 * delivered to the current task.
1839 *
1840 * The current task state is guaranteed to be TASK_RUNNING when this
1841 * routine returns.
1842 *
1843 * Returns 0 when the timer has expired otherwise -EINTR
1844 */
1845int __sched schedule_hrtimeout(ktime_t *expires,
1846 const enum hrtimer_mode mode)
1847{
1848 return schedule_hrtimeout_range(expires, 0, mode);
1849}
7bb67439 1850EXPORT_SYMBOL_GPL(schedule_hrtimeout);