summaryrefslogtreecommitdiff
path: root/kernel/sched/smp.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2020-05-28 11:01:34 +0200
committerIngo Molnar <mingo@kernel.org>2020-05-28 11:03:20 +0200
commit1f8db4150536431b031585ecc2a6793f69245de2 (patch)
tree351bd6bc83a8ea21dc6d06f706eb789b13a2aa5a /kernel/sched/smp.h
parenta148866489fbe243c936fe43e4525d8dbfa0318f (diff)
sched/headers: Split out open-coded prototypes into kernel/sched/smp.h
Move the prototypes for sched_ttwu_pending() and send_call_function_single_ipi() into the newly created kernel/sched/smp.h header, to make sure they are all the same, and to architectures happy that use -Wmissing-prototypes. Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/smp.h')
-rw-r--r--kernel/sched/smp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/sched/smp.h b/kernel/sched/smp.h
new file mode 100644
index 000000000000..9620e323162c
--- /dev/null
+++ b/kernel/sched/smp.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Scheduler internal SMP callback types and methods between the scheduler
+ * and other internal parts of the core kernel:
+ */
+
+extern void sched_ttwu_pending(void *arg);
+
+extern void send_call_function_single_ipi(int cpu);