1 #ifdef CONFIG_SCHED_AUTOGROUP
5 #include <linux/proc_fs.h>
6 #include <linux/seq_file.h>
7 #include <linux/kallsyms.h>
8 #include <linux/utsname.h>
9 #include <linux/security.h>
10 #include <linux/export.h>
12 unsigned int __read_mostly sysctl_sched_autogroup_enabled
= 1;
13 static struct autogroup autogroup_default
;
14 static atomic_t autogroup_seq_nr
;
16 void __init
autogroup_init(struct task_struct
*init_task
)
18 autogroup_default
.tg
= &root_task_group
;
19 kref_init(&autogroup_default
.kref
);
20 init_rwsem(&autogroup_default
.lock
);
21 init_task
->signal
->autogroup
= &autogroup_default
;
24 void autogroup_free(struct task_group
*tg
)
29 static inline void autogroup_destroy(struct kref
*kref
)
31 struct autogroup
*ag
= container_of(kref
, struct autogroup
, kref
);
33 #ifdef CONFIG_RT_GROUP_SCHED
34 /* We've redirected RT tasks to the root task group... */
38 sched_destroy_group(ag
->tg
);
41 static inline void autogroup_kref_put(struct autogroup
*ag
)
43 kref_put(&ag
->kref
, autogroup_destroy
);
46 static inline struct autogroup
*autogroup_kref_get(struct autogroup
*ag
)
52 static inline struct autogroup
*autogroup_task_get(struct task_struct
*p
)
57 if (!lock_task_sighand(p
, &flags
))
58 return autogroup_kref_get(&autogroup_default
);
60 ag
= autogroup_kref_get(p
->signal
->autogroup
);
61 unlock_task_sighand(p
, &flags
);
66 static inline struct autogroup
*autogroup_create(void)
68 struct autogroup
*ag
= kzalloc(sizeof(*ag
), GFP_KERNEL
);
69 struct task_group
*tg
;
74 tg
= sched_create_group(&root_task_group
);
80 init_rwsem(&ag
->lock
);
81 ag
->id
= atomic_inc_return(&autogroup_seq_nr
);
83 #ifdef CONFIG_RT_GROUP_SCHED
85 * Autogroup RT tasks are redirected to the root task group
86 * so we don't have to move tasks around upon policy change,
87 * or flail around trying to allocate bandwidth on the fly.
88 * A bandwidth exception in __sched_setscheduler() allows
89 * the policy change to proceed. Thereafter, task_group()
90 * returns &root_task_group, so zero bandwidth is required.
92 free_rt_sched_group(tg
);
93 tg
->rt_se
= root_task_group
.rt_se
;
94 tg
->rt_rq
= root_task_group
.rt_rq
;
103 if (printk_ratelimit()) {
104 printk(KERN_WARNING
"autogroup_create: %s failure.\n",
105 ag
? "sched_create_group()" : "kmalloc()");
108 return autogroup_kref_get(&autogroup_default
);
111 bool task_wants_autogroup(struct task_struct
*p
, struct task_group
*tg
)
113 if (tg
!= &root_task_group
)
116 if (p
->sched_class
!= &fair_sched_class
)
120 * We can only assume the task group can't go away on us if
121 * autogroup_move_group() can see us on ->thread_group list.
123 if (p
->flags
& PF_EXITING
)
130 autogroup_move_group(struct task_struct
*p
, struct autogroup
*ag
)
132 struct autogroup
*prev
;
133 struct task_struct
*t
;
136 BUG_ON(!lock_task_sighand(p
, &flags
));
138 prev
= p
->signal
->autogroup
;
140 unlock_task_sighand(p
, &flags
);
144 p
->signal
->autogroup
= autogroup_kref_get(ag
);
146 if (!ACCESS_ONCE(sysctl_sched_autogroup_enabled
))
152 } while_each_thread(p
, t
);
155 unlock_task_sighand(p
, &flags
);
156 autogroup_kref_put(prev
);
159 /* Allocates GFP_KERNEL, cannot be called under any spinlock */
160 void sched_autogroup_create_attach(struct task_struct
*p
)
162 struct autogroup
*ag
= autogroup_create();
164 autogroup_move_group(p
, ag
);
165 /* drop extra reference added by autogroup_create() */
166 autogroup_kref_put(ag
);
168 EXPORT_SYMBOL(sched_autogroup_create_attach
);
170 /* Cannot be called under siglock. Currently has no users */
171 void sched_autogroup_detach(struct task_struct
*p
)
173 autogroup_move_group(p
, &autogroup_default
);
175 EXPORT_SYMBOL(sched_autogroup_detach
);
177 void sched_autogroup_fork(struct signal_struct
*sig
)
179 sig
->autogroup
= autogroup_task_get(current
);
182 void sched_autogroup_exit(struct signal_struct
*sig
)
184 autogroup_kref_put(sig
->autogroup
);
187 static int __init
setup_autogroup(char *str
)
189 sysctl_sched_autogroup_enabled
= 0;
194 __setup("noautogroup", setup_autogroup
);
196 #ifdef CONFIG_PROC_FS
198 int proc_sched_autogroup_set_nice(struct task_struct
*p
, int nice
)
200 static unsigned long next
= INITIAL_JIFFIES
;
201 struct autogroup
*ag
;
204 if (nice
< -20 || nice
> 19)
207 err
= security_task_setnice(current
, nice
);
211 if (nice
< 0 && !can_nice(current
, nice
))
214 /* this is a heavy operation taking global locks.. */
215 if (!capable(CAP_SYS_ADMIN
) && time_before(jiffies
, next
))
218 next
= HZ
/ 10 + jiffies
;
219 ag
= autogroup_task_get(p
);
221 down_write(&ag
->lock
);
222 err
= sched_group_set_shares(ag
->tg
, prio_to_weight
[nice
+ 20]);
227 autogroup_kref_put(ag
);
232 void proc_sched_autogroup_show_task(struct task_struct
*p
, struct seq_file
*m
)
234 struct autogroup
*ag
= autogroup_task_get(p
);
236 if (!task_group_is_autogroup(ag
->tg
))
239 down_read(&ag
->lock
);
240 seq_printf(m
, "/autogroup-%ld nice %d\n", ag
->id
, ag
->nice
);
244 autogroup_kref_put(ag
);
246 #endif /* CONFIG_PROC_FS */
248 #ifdef CONFIG_SCHED_DEBUG
249 int autogroup_path(struct task_group
*tg
, char *buf
, int buflen
)
251 if (!task_group_is_autogroup(tg
))
254 return snprintf(buf
, buflen
, "%s-%ld", "/autogroup", tg
->autogroup
->id
);
256 #endif /* CONFIG_SCHED_DEBUG */
258 #endif /* CONFIG_SCHED_AUTOGROUP */