linux/debian/patches-rt/0028-sched-migrate_disable-...

39 lines
1.4 KiB
Diff
Raw Normal View History

2020-03-06 11:44:27 +00:00
From db2220843fd1c19c7b89db5f6e20382b5622fa05 Mon Sep 17 00:00:00 2001
2018-10-30 12:40:05 +00:00
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Tue, 9 Oct 2018 17:34:50 +0200
2020-03-28 12:59:50 +00:00
Subject: [PATCH 028/326] sched/migrate_disable: Add export_symbol_gpl for
2018-10-30 12:40:05 +00:00
__migrate_disabled
2020-03-28 12:59:50 +00:00
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.106-rt45.tar.xz
2018-10-30 12:40:05 +00:00
Jonathan reported that lttng/modules can't use __migrate_disabled().
This function is only used by sched/core itself and the tracing
infrastructure to report the migrate counter (lttng does probably the
same). Since the rework migrate_disable() it moved from sched.h to
preempt.h and is became an exported function instead of a "static
inline" due to the header recursion of preempt vs sched.
Since the compiler inlines the function for sched/core usage, add a
EXPORT_SYMBOL_GPL to allow the module/LTTNG usage.
Reported-by: Jonathan Rajott <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
kernel/sched/core.c | 1 +
2018-10-30 12:40:05 +00:00
1 file changed, 1 insertion(+)
2019-04-08 23:49:20 +00:00
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
2020-01-03 23:36:11 +00:00
index d0450f06612c..e6022cc2605b 100644
2018-10-30 12:40:05 +00:00
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
2019-04-30 12:45:19 +00:00
@@ -1013,6 +1013,7 @@ int __migrate_disabled(struct task_struct *p)
2018-10-30 12:40:05 +00:00
{
return p->migrate_disable;
}
+EXPORT_SYMBOL_GPL(__migrate_disabled);
#endif
static void __do_set_cpus_allowed_tail(struct task_struct *p,
2020-01-03 23:36:11 +00:00
--
2020-02-21 18:07:43 +00:00
2.25.0
2020-01-03 23:36:11 +00:00