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_offline_group(ag->tg);
39 sched_destroy_group(ag->tg);
42 static inline void autogroup_kref_put(struct autogroup *ag)
44 kref_put(&ag->kref, autogroup_destroy);
47 static inline struct autogroup *autogroup_kref_get(struct autogroup *ag)
53 static inline struct autogroup *autogroup_task_get(struct task_struct *p)
58 if (!lock_task_sighand(p, &flags))
59 return autogroup_kref_get(&autogroup_default);
61 ag = autogroup_kref_get(p->signal->autogroup);
62 unlock_task_sighand(p, &flags);
67 static inline struct autogroup *autogroup_create(void)
69 struct autogroup *ag = kzalloc(sizeof(*ag), GFP_KERNEL);
70 struct task_group *tg;
75 tg = sched_create_group(&root_task_group);
80 sched_online_group(tg, &root_task_group);
83 init_rwsem(&ag->lock);
84 ag->id = atomic_inc_return(&autogroup_seq_nr);
86 #ifdef CONFIG_RT_GROUP_SCHED
88 * Autogroup RT tasks are redirected to the root task group
89 * so we don't have to move tasks around upon policy change,
90 * or flail around trying to allocate bandwidth on the fly.
91 * A bandwidth exception in __sched_setscheduler() allows
92 * the policy change to proceed. Thereafter, task_group()
93 * returns &root_task_group, so zero bandwidth is required.
95 free_rt_sched_group(tg);
96 tg->rt_se = root_task_group.rt_se;
97 tg->rt_rq = root_task_group.rt_rq;
106 if (printk_ratelimit()) {
107 printk(KERN_WARNING "autogroup_create: %s failure.\n",
108 ag ? "sched_create_group()" : "kmalloc()");
111 return autogroup_kref_get(&autogroup_default);
114 bool task_wants_autogroup(struct task_struct *p, struct task_group *tg)
116 if (tg != &root_task_group)
119 if (p->sched_class != &fair_sched_class)
123 * We can only assume the task group can't go away on us if
124 * autogroup_move_group() can see us on ->thread_group list.
126 if (p->flags & PF_EXITING)
133 autogroup_move_group(struct task_struct *p, struct autogroup *ag)
135 struct autogroup *prev;
136 struct task_struct *t;
139 BUG_ON(!lock_task_sighand(p, &flags));
141 prev = p->signal->autogroup;
143 unlock_task_sighand(p, &flags);
147 p->signal->autogroup = autogroup_kref_get(ag);
149 if (!ACCESS_ONCE(sysctl_sched_autogroup_enabled))
155 } while_each_thread(p, t);
158 unlock_task_sighand(p, &flags);
159 autogroup_kref_put(prev);
162 /* Allocates GFP_KERNEL, cannot be called under any spinlock */
163 void sched_autogroup_create_attach(struct task_struct *p)
165 struct autogroup *ag = autogroup_create();
167 autogroup_move_group(p, ag);
168 /* drop extra reference added by autogroup_create() */
169 autogroup_kref_put(ag);
171 EXPORT_SYMBOL(sched_autogroup_create_attach);
173 /* Cannot be called under siglock. Currently has no users */
174 void sched_autogroup_detach(struct task_struct *p)
176 autogroup_move_group(p, &autogroup_default);
178 EXPORT_SYMBOL(sched_autogroup_detach);
180 void sched_autogroup_fork(struct signal_struct *sig)
182 sig->autogroup = autogroup_task_get(current);
185 void sched_autogroup_exit(struct signal_struct *sig)
187 autogroup_kref_put(sig->autogroup);
190 static int __init setup_autogroup(char *str)
192 sysctl_sched_autogroup_enabled = 0;
197 __setup("noautogroup", setup_autogroup);
199 #ifdef CONFIG_PROC_FS
201 int proc_sched_autogroup_set_nice(struct task_struct *p, int nice)
203 static unsigned long next = INITIAL_JIFFIES;
204 struct autogroup *ag;
207 if (nice < -20 || nice > 19)
210 err = security_task_setnice(current, nice);
214 if (nice < 0 && !can_nice(current, nice))
217 /* this is a heavy operation taking global locks.. */
218 if (!capable(CAP_SYS_ADMIN) && time_before(jiffies, next))
221 next = HZ / 10 + jiffies;
222 ag = autogroup_task_get(p);
224 down_write(&ag->lock);
225 err = sched_group_set_shares(ag->tg, prio_to_weight[nice + 20]);
230 autogroup_kref_put(ag);
235 void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m)
237 struct autogroup *ag = autogroup_task_get(p);
239 if (!task_group_is_autogroup(ag->tg))
242 down_read(&ag->lock);
243 seq_printf(m, "/autogroup-%ld nice %d\n", ag->id, ag->nice);
247 autogroup_kref_put(ag);
249 #endif /* CONFIG_PROC_FS */
251 #ifdef CONFIG_SCHED_DEBUG
252 int autogroup_path(struct task_group *tg, char *buf, int buflen)
254 if (!task_group_is_autogroup(tg))
257 return snprintf(buf, buflen, "%s-%ld", "/autogroup", tg->autogroup->id);
259 #endif /* CONFIG_SCHED_DEBUG */
261 #endif /* CONFIG_SCHED_AUTOGROUP */