hc
2024-05-10 61598093bbdd283a7edc367d900f223070ead8d2
kernel/kernel/sched/Makefile
....@@ -7,6 +7,12 @@
77 # that is not a function of syscall inputs. E.g. involuntary context switches.
88 KCOV_INSTRUMENT := n
99
10
+# There are numerous data races here, however, most of them are due to plain accesses.
11
+# This would make it even harder for syzbot to find reproducers, because these
12
+# bugs trigger without specific input. Disable by default, but should re-enable
13
+# eventually.
14
+KCSAN_SANITIZE := n
15
+
1016 ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y)
1117 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
1218 # needed for x86 only. Why this used to be enabled for all architectures is beyond
....@@ -19,13 +25,11 @@
1925 obj-y += core.o loadavg.o clock.o cputime.o
2026 obj-y += idle.o fair.o rt.o deadline.o
2127 obj-y += wait.o wait_bit.o swait.o completion.o
22
-obj-y += stubs.o
2328
2429 obj-$(CONFIG_SMP) += cpupri.o cpudeadline.o topology.o stop_task.o pelt.o
2530 obj-$(CONFIG_SCHED_AUTOGROUP) += autogroup.o
2631 obj-$(CONFIG_SCHEDSTATS) += stats.o
2732 obj-$(CONFIG_SCHED_DEBUG) += debug.o
28
-obj-$(CONFIG_SCHED_TUNE) += tune.o
2933 obj-$(CONFIG_CGROUP_CPUACCT) += cpuacct.o
3034 obj-$(CONFIG_CPU_FREQ) += cpufreq.o
3135 obj-$(CONFIG_CPU_FREQ_GOV_SCHEDUTIL) += cpufreq_schedutil.o