aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_debug.c
diff options
context:
space:
mode:
authorSrivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>2007-10-15 11:00:09 -0400
committerIngo Molnar <mingo@elte.hu>2007-10-15 11:00:09 -0400
commit24e377a83220ef05c9b5bec7e01d65eed6609aa6 (patch)
tree9303b3d9f91ee39517d379aaac06c0432be8a9b8 /kernel/sched_debug.c
parent9b5b77512dce239fa168183fa71896712232e95a (diff)
sched: add fair-user scheduler
Enable user-id based fair group scheduling. This is useful for anyone who wants to test the group scheduler w/o having to enable CONFIG_CGROUPS. A separate scheduling group (i.e struct task_grp) is automatically created for every new user added to the system. Upon uid change for a task, it is made to move to the corresponding scheduling group. A /proc tunable (/proc/root_user_share) is also provided to tune root user's quota of cpu bandwidth. Signed-off-by: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com> Signed-off-by: Dhaval Giani <dhaval@linux.vnet.ibm.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/sched_debug.c')
-rw-r--r--kernel/sched_debug.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c
index 3e47e870b043..57ee9d5630a8 100644
--- a/kernel/sched_debug.c
+++ b/kernel/sched_debug.c
@@ -212,6 +212,49 @@ static void sysrq_sched_debug_show(void)
212 sched_debug_show(NULL, NULL); 212 sched_debug_show(NULL, NULL);
213} 213}
214 214
215#ifdef CONFIG_FAIR_USER_SCHED
216
217static DEFINE_MUTEX(root_user_share_mutex);
218
219static int
220root_user_share_read_proc(char *page, char **start, off_t off, int count,
221 int *eof, void *data)
222{
223 int len;
224
225 len = sprintf(page, "%d\n", init_task_grp_load);
226
227 return len;
228}
229
230static int
231root_user_share_write_proc(struct file *file, const char __user *buffer,
232 unsigned long count, void *data)
233{
234 unsigned long shares;
235 char kbuf[sizeof(unsigned long)+1];
236 int rc = 0;
237
238 if (copy_from_user(kbuf, buffer, sizeof(kbuf)))
239 return -EFAULT;
240
241 shares = simple_strtoul(kbuf, NULL, 0);
242
243 if (!shares)
244 shares = NICE_0_LOAD;
245
246 mutex_lock(&root_user_share_mutex);
247
248 init_task_grp_load = shares;
249 rc = sched_group_set_shares(&init_task_grp, shares);
250
251 mutex_unlock(&root_user_share_mutex);
252
253 return (rc < 0 ? rc : count);
254}
255
256#endif /* CONFIG_FAIR_USER_SCHED */
257
215static int sched_debug_open(struct inode *inode, struct file *filp) 258static int sched_debug_open(struct inode *inode, struct file *filp)
216{ 259{
217 return single_open(filp, sched_debug_show, NULL); 260 return single_open(filp, sched_debug_show, NULL);
@@ -234,6 +277,15 @@ static int __init init_sched_debug_procfs(void)
234 277
235 pe->proc_fops = &sched_debug_fops; 278 pe->proc_fops = &sched_debug_fops;
236 279
280#ifdef CONFIG_FAIR_USER_SCHED
281 pe = create_proc_entry("root_user_share", 0644, NULL);
282 if (!pe)
283 return -ENOMEM;
284
285 pe->read_proc = root_user_share_read_proc;
286 pe->write_proc = root_user_share_write_proc;
287#endif
288
237 return 0; 289 return 0;
238} 290}
239 291