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>
#include "../smpboot.h"
#include "pelt.h"
+#include "smp.h"
#define CREATE_TRACE_POINTS
#include <trace/events/sched.h>
--- /dev/null
+/* 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);
#include <linux/hypervisor.h>
#include "smpboot.h"
-
+#include "sched/smp.h"
#define CSD_TYPE(_csd) ((_csd)->flags & CSD_FLAG_TYPE_MASK)
static DEFINE_PER_CPU_SHARED_ALIGNED(call_single_data_t, csd_data);
-extern void send_call_function_single_ipi(int cpu);
-
void __smp_call_single_queue(int cpu, struct llist_node *node)
{
/*
flush_smp_call_function_queue(true);
}
-extern void sched_ttwu_pending(void *);
extern void irq_work_single(void *);
/**