Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1550031 > unrolled thread
| Started by | Waiman Long <longman@redhat.com> |
|---|---|
| First post | 2017-01-03 19:10 +0100 |
| Last post | 2017-01-03 19:10 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[RFC PATCH 3/7] locking/rtqspinlock: Use static RT priority when in interrupt context Waiman Long <longman@redhat.com> - 2017-01-03 19:10 +0100
| From | Waiman Long <longman@redhat.com> |
|---|---|
| Date | 2017-01-03 19:10 +0100 |
| Subject | [RFC PATCH 3/7] locking/rtqspinlock: Use static RT priority when in interrupt context |
| Message-ID | <sVBH3-1F1-19@gated-at.bofh.it> |
When in interrupt context, the priority of the interrupted task is
meaningless. So static RT priority is assigned in this case to make
sure that it can get lock ASAP to reduce latency to the interrupted
task.
Signed-off-by: Waiman Long <longman@redhat.com>
---
kernel/locking/qspinlock_rt.h | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/kernel/locking/qspinlock_rt.h b/kernel/locking/qspinlock_rt.h
index 69513d6..b6289fb 100644
--- a/kernel/locking/qspinlock_rt.h
+++ b/kernel/locking/qspinlock_rt.h
@@ -19,6 +19,13 @@
*
* As RT qspinlock needs the whole pending byte, it cannot be used on kernel
* configured to support 16K or more CPUs (CONFIG_NR_CPUS).
+ *
+ * In interrupt context, the priority of the interrupted task is not
+ * meaningful. So a fixed static RT priority is used and they won't go into
+ * the MCS wait queue.
+ * 1) Soft IRQ = 1
+ * 2) Hard IRQ = MAX_RT_PRIO
+ * 3) NMI = MAX_RT_PRIO+1
*/
#include <linux/sched.h>
@@ -60,11 +67,15 @@ static inline int rt_pending(int val)
static bool rt_spin_trylock(struct qspinlock *lock)
{
struct __qspinlock *l = (void *)lock;
- u8 prio = rt_task_priority(current);
+ struct task_struct *task = in_interrupt() ? NULL : current;
+ u8 prio;
BUILD_BUG_ON(_Q_PENDING_BITS != 8);
- if (!prio)
+ if (!task)
+ prio = in_nmi() ? MAX_RT_PRIO + 1
+ : in_irq() ? MAX_RT_PRIO : 1;
+ else if (!(prio = rt_task_priority(task)))
return false;
/*
--
1.8.3.1
Back to top | Article view | linux.kernel
csiph-web