linux内核从版本v5.13-rc1起(含),sysctl 已无法设置 kernel.sched_min_granularity_ns。
其实不止sched_min_granularity_ns,在 /proc/sys/kernel 下,和CPU调度相关的6个参数都不见了:
sched_latency_ns
sched_nr_migrate
sched_migration_cost_ns
sched_min_granularity_ns
sched_tunable_scaling
sched_wakeup_granularity_ns
看下不同内核版本的实际输出
5.15.0-52-generic
marvin@vm:~$ uname -a
Linux vm 5.15.0-52-generic #58-Ubuntu SMP Thu Oct 13 08:03:55 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
marvin@vm:~$ ll /proc/sys/kernel/ | grep sched
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_autogroup_enabled
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_cfs_bandwidth_slice_us
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_child_runs_first
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_deadline_period_max_us
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_deadline_period_min_us
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_energy_aware
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_rr_timeslice_ms
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_rt_period_us
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_rt_runtime_us
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_schedstats
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_util_clamp_max
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_util_clamp_min
-rw-r--r-- 1 root root 0 11月 19 11:20 sched_util_clamp_min_rt_default
marvin@vm:~$
5.4.0-131-generic
marvin@vm204:~$ uname -a
Linux vm204 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
marvin@vm204:~$ ll /proc/sys/kernel/ | grep sched
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_autogroup_enabled
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_cfs_bandwidth_slice_us
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_child_runs_first
dr-xr-xr-x 1 root root 0 11月 19 11:18 sched_domain/
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_latency_ns
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_migration_cost_ns
-rw-r--r-- 1 root root 0 11月 19 16:21 sched_min_granularity_ns
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_nr_migrate
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_rr_timeslice_ms
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_rt_period_us
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_rt_runtime_us
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_schedstats
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_tunable_scaling
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_util_clamp_max
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_util_clamp_min
-rw-r--r-- 1 root root 0 11月 19 11:18 sched_wakeup_granularity_ns
marvin@vm204:~$
为了看清楚变化,稍微调整下输出文本的顺序,然后,用文本比较工具展示下
那么,在新版本中缺少了的6个参数去哪里了呢?被移动到了 /sys/kernel/debug/sched 目录下
还能修改吗?可以的,echo 4000000 > /sys/kernel/debug/sched/min_granularity_ns 即可
代码修改的具体提交:
sched: Move SCHED_DEBUG sysctl to debugfs · torvalds/linux@8a99b68 · GitHub