summaryrefslogtreecommitdiff
path: root/kernel/timer.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-07-17 22:08:38 +0200
committerClark Williams <williams@redhat.com>2012-03-13 12:40:12 -0500
commite63dbbb5631552a99acbe5807aa7835a88c2b9ee (patch)
tree769226e71c2024920300155ba2bcb4d2d37fd00c /kernel/timer.c
parent06b59470a2bdb09f5474d6e4ebf57d26e48fd614 (diff)
timer-handle-idle-trylock-in-get-next-timer-irq.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r--kernel/timer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/timer.c b/kernel/timer.c
index 8a9ca7d1a23c..7ea787b23d76 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -1323,13 +1323,14 @@ unsigned long get_next_timer_interrupt(unsigned long now)
/*
* On PREEMPT_RT we cannot sleep here. If the trylock does not
* succeed then we return the worst-case 'expires in 1 tick'
- * value:
+ * value. We use the rt functions here directly to avoid a
+ * migrate_disable() call.
*/
- if (spin_trylock(&base->lock)) {
+ if (spin_do_trylock(&base->lock)) {
if (time_before_eq(base->next_timer, base->timer_jiffies))
base->next_timer = __next_timer_interrupt(base);
expires = base->next_timer;
- spin_unlock(&base->lock);
+ rt_spin_unlock(&base->lock);
} else {
expires = now + 1;
}