linux/debian/patches-rt/0128-rtmutex-trylock-is-oka...

35 lines
1.1 KiB
Diff
Raw Normal View History

2020-03-06 11:44:27 +00:00
From 0666dfeb48e54032c73ac843af0c02be5353c0dc Mon Sep 17 00:00:00 2001
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
2019-04-08 23:49:20 +00:00
Date: Wed, 2 Dec 2015 11:34:07 +0100
2020-03-28 12:59:50 +00:00
Subject: [PATCH 128/326] rtmutex: trylock is okay on -RT
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.106-rt45.tar.xz
non-RT kernel could deadlock on rt_mutex_trylock() in softirq context. On
-RT we don't run softirqs in IRQ context but in thread context so it is
not a issue here.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
kernel/locking/rtmutex.c | 4 ++++
1 file changed, 4 insertions(+)
2019-04-08 23:49:20 +00:00
diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c
index 9562aaa2afdc..72abe7c121fa 100644
--- a/kernel/locking/rtmutex.c
+++ b/kernel/locking/rtmutex.c
2019-04-08 23:49:20 +00:00
@@ -1583,7 +1583,11 @@ int __sched rt_mutex_trylock(struct rt_mutex *lock)
{
int ret;
+#ifdef CONFIG_PREEMPT_RT_FULL
+ if (WARN_ON_ONCE(in_irq() || in_nmi()))
+#else
if (WARN_ON_ONCE(in_irq() || in_nmi() || in_serving_softirq()))
+#endif
return 0;
ret = rt_mutex_fasttrylock(lock, rt_mutex_slowtrylock);
2020-01-03 23:36:11 +00:00
--
2020-02-21 18:07:43 +00:00
2.25.0
2020-01-03 23:36:11 +00:00