Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * These are the scheduling policy related scheduler files, built
0004  * in a single compilation unit for build efficiency reasons.
0005  *
0006  * ( Incidentally, the size of the compilation unit is roughly
0007  *   comparable to core.c and fair.c, the other two big
0008  *   compilation units. This helps balance build time, while
0009  *   coalescing source files to amortize header inclusion
0010  *   cost. )
0011  *
0012  * core.c and fair.c are built separately.
0013  */
0014 
0015 /* Headers: */
0016 #include <linux/sched/clock.h>
0017 #include <linux/sched/cputime.h>
0018 #include <linux/sched/hotplug.h>
0019 #include <linux/sched/posix-timers.h>
0020 #include <linux/sched/rt.h>
0021 
0022 #include <linux/cpuidle.h>
0023 #include <linux/jiffies.h>
0024 #include <linux/livepatch.h>
0025 #include <linux/psi.h>
0026 #include <linux/seqlock_api.h>
0027 #include <linux/slab.h>
0028 #include <linux/suspend.h>
0029 #include <linux/tsacct_kern.h>
0030 #include <linux/vtime.h>
0031 
0032 #include <uapi/linux/sched/types.h>
0033 
0034 #include "sched.h"
0035 #include "smp.h"
0036 
0037 #include "autogroup.h"
0038 #include "stats.h"
0039 #include "pelt.h"
0040 
0041 /* Source code modules: */
0042 
0043 #include "idle.c"
0044 
0045 #include "rt.c"
0046 
0047 #ifdef CONFIG_SMP
0048 # include "cpudeadline.c"
0049 # include "pelt.c"
0050 #endif
0051 
0052 #include "cputime.c"
0053 #include "deadline.c"
0054