xref: /linux/kernel/sched/build_policy.c (revision 07814a9439a3b03d79a1001614b5bc1cab69bcec)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * These are the scheduling policy related scheduler files, built
4  * in a single compilation unit for build efficiency reasons.
5  *
6  * ( Incidentally, the size of the compilation unit is roughly
7  *   comparable to core.c and fair.c, the other two big
8  *   compilation units. This helps balance build time, while
9  *   coalescing source files to amortize header inclusion
10  *   cost. )
11  *
12  * core.c and fair.c are built separately.
13  */
14 
15 /* Headers: */
16 #include <linux/sched/clock.h>
17 #include <linux/sched/cputime.h>
18 #include <linux/sched/hotplug.h>
19 #include <linux/sched/posix-timers.h>
20 #include <linux/sched/rt.h>
21 
22 #include <linux/cpuidle.h>
23 #include <linux/jiffies.h>
24 #include <linux/kobject.h>
25 #include <linux/livepatch.h>
26 #include <linux/pm.h>
27 #include <linux/psi.h>
28 #include <linux/rhashtable.h>
29 #include <linux/seq_buf.h>
30 #include <linux/seqlock_api.h>
31 #include <linux/slab.h>
32 #include <linux/suspend.h>
33 #include <linux/tsacct_kern.h>
34 #include <linux/vtime.h>
35 #include <linux/sysrq.h>
36 #include <linux/percpu-rwsem.h>
37 
38 #include <uapi/linux/sched/types.h>
39 
40 #include "sched.h"
41 #include "smp.h"
42 
43 #include "autogroup.h"
44 #include "stats.h"
45 #include "pelt.h"
46 
47 /* Source code modules: */
48 
49 #include "idle.c"
50 
51 #include "rt.c"
52 
53 #ifdef CONFIG_SMP
54 # include "cpudeadline.c"
55 # include "pelt.c"
56 #endif
57 
58 #include "cputime.c"
59 #include "deadline.c"
60 
61 #ifdef CONFIG_SCHED_CLASS_EXT
62 # include "ext.c"
63 #endif
64 
65 #include "syscalls.c"
66