aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/smp.c
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/smp.c
parentsched: Replace rq::wake_list (diff)
downloadlinux-dev-1f8db4150536431b031585ecc2a6793f69245de2.tar.xz
linux-dev-1f8db4150536431b031585ecc2a6793f69245de2.zip
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/smp.c')
-rw-r--r--kernel/smp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/smp.c b/kernel/smp.c
index 0d61dc060b01..4dec04f7fdc5 100644
--- a/kernel/smp.c
+++ b/kernel/smp.c
@@ -22,7 +22,7 @@
#include <linux/hypervisor.h>
#include "smpboot.h"
-
+#include "sched/smp.h"
#define CSD_TYPE(_csd) ((_csd)->flags & CSD_FLAG_TYPE_MASK)
@@ -133,8 +133,6 @@ static __always_inline void csd_unlock(call_single_data_t *csd)
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)
{
/*
@@ -196,7 +194,6 @@ void generic_smp_call_function_single_interrupt(void)
flush_smp_call_function_queue(true);
}
-extern void sched_ttwu_pending(void *);
extern void irq_work_single(void *);
/**