diff options
author | Zhen Ni <nizhen@uniontech.com> | 2022-02-15 12:45:57 +0100 |
---|---|---|
committer | Luis Chamberlain <mcgrof@kernel.org> | 2022-04-06 22:43:43 +0200 |
commit | a60707d74bd1d119cf7bcc5101cda912fc46d5e3 (patch) | |
tree | 91c01a9c81a6174295b95bde8fbfee1521513bd0 /kernel/sysctl.c | |
parent | Linux 5.18-rc1 (diff) | |
download | linux-a60707d74bd1d119cf7bcc5101cda912fc46d5e3.tar.xz linux-a60707d74bd1d119cf7bcc5101cda912fc46d5e3.zip |
sched: Move child_runs_first sysctls to fair.c
move child_runs_first sysctls to fair.c and use the new
register_sysctl_init() to register the sysctl interface.
Signed-off-by: Zhen Ni <nizhen@uniontech.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 830aaf8ca08e..6bbb8e1af675 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1659,13 +1659,6 @@ int proc_do_static_key(struct ctl_table *table, int write, } static struct ctl_table kern_table[] = { - { - .procname = "sched_child_runs_first", - .data = &sysctl_sched_child_runs_first, - .maxlen = sizeof(unsigned int), - .mode = 0644, - .proc_handler = proc_dointvec, - }, #ifdef CONFIG_SCHEDSTATS { .procname = "sched_schedstats", |