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

61 lines
2.1 KiB
Diff
Raw Permalink Normal View History

2020-10-12 12:52:06 +00:00
From c1079fcb888f7bbdef9e2d4cc03c1d4eb26e4dd5 Mon Sep 17 00:00:00 2001
Message-Id: <c1079fcb888f7bbdef9e2d4cc03c1d4eb26e4dd5.1601675152.git.zanussi@kernel.org>
In-Reply-To: <5b5a156f9808b1acf1205606e03da117214549ea.1601675151.git.zanussi@kernel.org>
References: <5b5a156f9808b1acf1205606e03da117214549ea.1601675151.git.zanussi@kernel.org>
From: Thomas Gleixner <tglx@linutronix.de>
2019-04-08 23:49:20 +00:00
Date: Tue, 7 Jun 2011 09:19:06 +0200
2020-09-04 20:10:21 +00:00
Subject: [PATCH 110/333] sched: Do not account rcu_preempt_depth on RT in
2019-04-08 23:49:20 +00:00
might_sleep()
2020-10-12 12:52:06 +00:00
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.148-rt64.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
2019-11-25 00:04:39 +00:00
index 68cbe111420b..027c58cdbb6e 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
2020-08-28 04:53:35 +00:00
index 53d9f8927619..2aa1d2a9ee5e 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
2020-08-28 04:53:35 +00:00
@@ -6193,7 +6193,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);
}
2020-01-03 23:36:11 +00:00
--
2020-06-22 13:14:16 +00:00
2.17.1
2020-01-03 23:36:11 +00:00