Merge tag 'sched-urgent-2022-06-05' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull scheduler fix from Thomas Gleixner:
"Fix the fallout of sysctl code move which placed the init function
wrong"

* tag 'sched-urgent-2022-06-05' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched/autogroup: Fix sysctl move

+1 -1
+1 -1
kernel/sched/autogroup.c
··· 36 36 kref_init(&autogroup_default.kref); 37 37 init_rwsem(&autogroup_default.lock); 38 38 init_task->signal->autogroup = &autogroup_default; 39 + sched_autogroup_sysctl_init(); 39 40 } 40 41 41 42 void autogroup_free(struct task_group *tg) ··· 220 219 static int __init setup_autogroup(char *str) 221 220 { 222 221 sysctl_sched_autogroup_enabled = 0; 223 - sched_autogroup_sysctl_init(); 224 222 225 223 return 1; 226 224 }