From 44ee5f4d373ec3180cec3b68f606a77be0ac2dfb Mon Sep 17 00:00:00 2001 From: Sebastian Andrzej Siewior Date: Tue, 9 Oct 2018 17:34:50 +0200 Subject: [PATCH 030/266] sched/migrate_disable: Add export_symbol_gpl for __migrate_disabled Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.31-rt18.tar.xz 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 Signed-off-by: Sebastian Andrzej Siewior --- kernel/sched/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 77f3c4771a2b..f027ac73f1df 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -1012,6 +1012,7 @@ int __migrate_disabled(struct task_struct *p) { return p->migrate_disable; } +EXPORT_SYMBOL_GPL(__migrate_disabled); #endif static void __do_set_cpus_allowed_tail(struct task_struct *p, -- 2.20.1