forked from rrcarlosr/Jetpack
57 lines
1.7 KiB
Diff
57 lines
1.7 KiB
Diff
From 94c104c55c7f5de8251f1e5076752ad62940ba23 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Gleixner <tglx@linutronix.de>
|
|
Date: Tue, 7 Jun 2011 09:19:06 +0200
|
|
Subject: [PATCH 136/352] sched: Do not account rcu_preempt_depth on RT in
|
|
might_sleep()
|
|
|
|
RT changes the rcu_preempt_depth semantics, so we cannot check for it
|
|
in might_sleep().
|
|
|
|
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
|
|
---
|
|
include/linux/rcupdate.h | 7 +++++++
|
|
kernel/sched/core.c | 2 +-
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h
|
|
index 01f71e1..00dc4a9 100644
|
|
--- a/include/linux/rcupdate.h
|
|
+++ b/include/linux/rcupdate.h
|
|
@@ -301,6 +301,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 */
|
|
|
|
@@ -326,6 +331,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 */
|
|
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
|
|
index 90779b4..31d488d 100644
|
|
--- a/kernel/sched/core.c
|
|
+++ b/kernel/sched/core.c
|
|
@@ -8081,7 +8081,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);
|
|
}
|
|
--
|
|
2.7.4
|
|
|