aboutsummaryrefslogtreecommitdiff
path: root/kernel/sched
diff options
context:
space:
mode:
authorGravatar Arnd Bergmann <arnd@arndb.de> 2023-05-22 21:50:18 +0200
committerGravatar Peter Zijlstra <peterz@infradead.org> 2023-05-30 22:46:25 +0200
commit378be384e01f13fc44d0adc70873de525586ad74 (patch)
tree8d02e89e47cb4045a392adf9e4c4bfa6f2ce003c /kernel/sched
parentsched: Hide unused sched_update_scaling() (diff)
downloadlinux-378be384e01f13fc44d0adc70873de525586ad74.tar.gz
linux-378be384e01f13fc44d0adc70873de525586ad74.tar.bz2
linux-378be384e01f13fc44d0adc70873de525586ad74.zip
sched: Add schedule_user() declaration
The schedule_user() function is used on powerpc and sparc architectures, but only ever called from assembler, so it has no prototype, causing a harmless W=1 warning: kernel/sched/core.c:6730:35: error: no previous prototype for 'schedule_user' [-Werror=missing-prototypes] Add a prototype in sched/sched.h to shut up the warning. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org> Link: https://lore.kernel.org/r/20230522195021.3456768-3-arnd@kernel.org
Diffstat (limited to 'kernel/sched')
-rw-r--r--kernel/sched/sched.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h
index 678446251c35..192e7816234e 100644
--- a/kernel/sched/sched.h
+++ b/kernel/sched/sched.h
@@ -2376,6 +2376,7 @@ static inline struct cpuidle_state *idle_get_state(struct rq *rq)
#endif
extern void schedule_idle(void);
+asmlinkage void schedule_user(void);
extern void sysrq_sched_debug_show(void);
extern void sched_init_granularity(void);