diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:00:14 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:00:14 -0400 |
commit | 4cf86d77f5942336e7cd9de874b38b3c83b54d5e (patch) | |
tree | a62b0a1b5a71f715257b82c0f65f894153757c84 /kernel/sched_debug.c | |
parent | 06877c33fe9261ccdf143492c28de93c56493079 (diff) |
sched: cleanup: rename task_grp to task_group
cleanup: rename task_grp to task_group. No need to save two characters
and 'grp' is annoying to read.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_debug.c')
-rw-r--r-- | kernel/sched_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index 48748d04144d..6f87b31d233c 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c | |||
@@ -239,7 +239,7 @@ static int | |||
239 | root_user_share_read_proc(char *page, char **start, off_t off, int count, | 239 | root_user_share_read_proc(char *page, char **start, off_t off, int count, |
240 | int *eof, void *data) | 240 | int *eof, void *data) |
241 | { | 241 | { |
242 | return sprintf(page, "%d\n", init_task_grp_load); | 242 | return sprintf(page, "%d\n", init_task_group_load); |
243 | } | 243 | } |
244 | 244 | ||
245 | static int | 245 | static int |
@@ -260,8 +260,8 @@ root_user_share_write_proc(struct file *file, const char __user *buffer, | |||
260 | 260 | ||
261 | mutex_lock(&root_user_share_mutex); | 261 | mutex_lock(&root_user_share_mutex); |
262 | 262 | ||
263 | init_task_grp_load = shares; | 263 | init_task_group_load = shares; |
264 | rc = sched_group_set_shares(&init_task_grp, shares); | 264 | rc = sched_group_set_shares(&init_task_group, shares); |
265 | 265 | ||
266 | mutex_unlock(&root_user_share_mutex); | 266 | mutex_unlock(&root_user_share_mutex); |
267 | 267 | ||