summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-07-17 22:08:38 +0200
committerClark Williams <williams@redhat.com>2012-02-15 10:32:54 -0600
commitddb5b25b72a57c2a15f31cb5f403689422c4e0af (patch)
tree4264e400e0ab88cd874cdc798b94c0210e34c791 /kernel
parentbe7703457a3cdd753cdc2566d46da285ef6b805b (diff)
timer-handle-idle-trylock-in-get-next-timer-irq.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtmutex.c7
-rw-r--r--kernel/timer.c7
2 files changed, 5 insertions, 9 deletions
diff --git a/kernel/rtmutex.c b/kernel/rtmutex.c
index a7723d217170..9850dc02f1db 100644
--- a/kernel/rtmutex.c
+++ b/kernel/rtmutex.c
@@ -861,15 +861,10 @@ EXPORT_SYMBOL(rt_spin_unlock_wait);
int __lockfunc rt_spin_trylock(spinlock_t *lock)
{
- int ret;
+ int ret = rt_mutex_trylock(&lock->lock);
- migrate_disable();
- ret = rt_mutex_trylock(&lock->lock);
if (ret)
spin_acquire(&lock->dep_map, 0, 1, _RET_IP_);
- else
- migrate_enable();
-
return ret;
}
EXPORT_SYMBOL(rt_spin_trylock);
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;
}