linux/debian/patches-rt/0111-sched-Do-not-account-r...

58 lines
1.8 KiB
Diff
Raw Normal View History

From 833fc1aa92cf522d59c1a02d410198e8ba4d1832 Mon Sep 17 00:00:00 2001
From: Thomas Gleixner <tglx@linutronix.de>
2019-04-08 23:49:20 +00:00
Date: Tue, 7 Jun 2011 09:19:06 +0200
Subject: [PATCH 111/283] sched: Do not account rcu_preempt_depth on RT in
2019-04-08 23:49:20 +00:00
might_sleep()
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.59-rt24.tar.xz
RT changes the rcu_preempt_depth semantics, so we cannot check for it
in might_sleep().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
include/linux/rcupdate.h | 7 +++++++
kernel/sched/core.c | 2 +-
2 files changed, 8 insertions(+), 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h
index e102c5bccbb9..87eafcb3312f 100644
--- a/include/linux/rcupdate.h
+++ b/include/linux/rcupdate.h
2018-10-30 12:40:05 +00:00
@@ -73,6 +73,11 @@ void synchronize_rcu(void);
* types of kernel builds, the rcu_read_lock() nesting depth is unknowable.
*/
#define rcu_preempt_depth() (current->rcu_read_lock_nesting)
+#ifndef CONFIG_PREEMPT_RT_FULL
+#define sched_rcu_preempt_depth() rcu_preempt_depth()
+#else
+static inline int sched_rcu_preempt_depth(void) { return 0; }
+#endif
#else /* #ifdef CONFIG_PREEMPT_RCU */
@@ -96,6 +101,8 @@ static inline int rcu_preempt_depth(void)
return 0;
}
+#define sched_rcu_preempt_depth() rcu_preempt_depth()
+
#endif /* #else #ifdef CONFIG_PREEMPT_RCU */
/* Internal to kernel */
2019-04-08 23:49:20 +00:00
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 5734699b0812..0be1cc1120db 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
2019-04-30 12:45:19 +00:00
@@ -6156,7 +6156,7 @@ void __init sched_init(void)
#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
static inline int preempt_count_equals(int preempt_offset)
{
- int nested = preempt_count() + rcu_preempt_depth();
+ int nested = preempt_count() + sched_rcu_preempt_depth();
return (nested == preempt_offset);
}
2019-04-08 23:49:20 +00:00
--
2.20.1