linux/debian/patches-rt/0106-sched-Move-task_struct...

97 lines
2.8 KiB
Diff
Raw Normal View History

From bc6dc2730e93dec5ead183a44781b5c8bf47b3d7 Mon Sep 17 00:00:00 2001
From: Thomas Gleixner <tglx@linutronix.de>
Date: Tue, 31 May 2011 16:59:16 +0200
Subject: [PATCH 106/283] sched: Move task_struct cleanup to RCU
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.59-rt24.tar.xz
__put_task_struct() does quite some expensive work. We don't want to
burden random tasks with that.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
include/linux/sched.h | 3 +++
include/linux/sched/task.h | 11 ++++++++++-
kernel/fork.c | 15 ++++++++++++++-
3 files changed, 27 insertions(+), 2 deletions(-)
2019-04-08 23:49:20 +00:00
diff --git a/include/linux/sched.h b/include/linux/sched.h
2019-04-30 12:45:19 +00:00
index c2dfe6939773..a6f2f76b1162 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
2018-12-14 09:55:05 +00:00
@@ -1186,6 +1186,9 @@ struct task_struct {
unsigned int sequential_io;
unsigned int sequential_io_avg;
#endif
+#ifdef CONFIG_PREEMPT_RT_BASE
+ struct rcu_head put_rcu;
+#endif
#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
unsigned long task_state_change;
#endif
2019-04-08 23:49:20 +00:00
diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h
index 108ede99e533..bb98c5b43f81 100644
--- a/include/linux/sched/task.h
+++ b/include/linux/sched/task.h
@@ -88,6 +88,15 @@ extern void sched_exec(void);
#define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
+#ifdef CONFIG_PREEMPT_RT_BASE
+extern void __put_task_struct_cb(struct rcu_head *rhp);
+
+static inline void put_task_struct(struct task_struct *t)
+{
+ if (atomic_dec_and_test(&t->usage))
+ call_rcu(&t->put_rcu, __put_task_struct_cb);
+}
+#else
extern void __put_task_struct(struct task_struct *t);
static inline void put_task_struct(struct task_struct *t)
2019-04-08 23:49:20 +00:00
@@ -95,7 +104,7 @@ static inline void put_task_struct(struct task_struct *t)
if (atomic_dec_and_test(&t->usage))
__put_task_struct(t);
}
-
+#endif
struct task_struct *task_rcu_dereference(struct task_struct **ptask);
#ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT
2019-04-08 23:49:20 +00:00
diff --git a/kernel/fork.c b/kernel/fork.c
index 492bc898b09a..cba3cade3d5b 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
2019-04-08 23:49:20 +00:00
@@ -671,7 +671,9 @@ static inline void put_signal_struct(struct signal_struct *sig)
if (atomic_dec_and_test(&sig->sigcnt))
free_signal_struct(sig);
}
-
+#ifdef CONFIG_PREEMPT_RT_BASE
+static
+#endif
void __put_task_struct(struct task_struct *tsk)
{
WARN_ON(!tsk->exit_state);
2019-04-08 23:49:20 +00:00
@@ -688,7 +690,18 @@ void __put_task_struct(struct task_struct *tsk)
if (!profile_handoff_task(tsk))
free_task(tsk);
}
+#ifndef CONFIG_PREEMPT_RT_BASE
EXPORT_SYMBOL_GPL(__put_task_struct);
+#else
+void __put_task_struct_cb(struct rcu_head *rhp)
+{
+ struct task_struct *tsk = container_of(rhp, struct task_struct, put_rcu);
+
+ __put_task_struct(tsk);
+
+}
+EXPORT_SYMBOL_GPL(__put_task_struct_cb);
+#endif
void __init __weak arch_task_cache_init(void) { }
2019-04-08 23:49:20 +00:00
--
2.20.1