Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234560
b: refs/heads/master
c: 511f67a
h: refs/heads/master
v: v3
  • Loading branch information
Mike Galbraith authored and Ingo Molnar committed Feb 23, 2011
1 parent 79e9222 commit 1a1914c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 800d4d30c8f20bd728e5741a3b77c4859a613f7c
refs/heads/master: 511f67a5997c4967c69a3961e2fc9f04d8d244ac
11 changes: 6 additions & 5 deletions trunk/kernel/sched_autogroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ static atomic_t autogroup_seq_nr;
static void __init autogroup_init(struct task_struct *init_task)
{
autogroup_default.tg = &root_task_group;
root_task_group.autogroup = &autogroup_default;
kref_init(&autogroup_default.kref);
init_rwsem(&autogroup_default.lock);
init_task->signal->autogroup = &autogroup_default;
Expand Down Expand Up @@ -130,7 +129,7 @@ task_wants_autogroup(struct task_struct *p, struct task_group *tg)

static inline bool task_group_is_autogroup(struct task_group *tg)
{
return tg != &root_task_group && tg->autogroup;
return !!tg->autogroup;
}

static inline struct task_group *
Expand Down Expand Up @@ -251,20 +250,22 @@ void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m)
{
struct autogroup *ag = autogroup_task_get(p);

if (!task_group_is_autogroup(ag->tg))
goto out;

down_read(&ag->lock);
seq_printf(m, "/autogroup-%ld nice %d\n", ag->id, ag->nice);
up_read(&ag->lock);

out:
autogroup_kref_put(ag);
}
#endif /* CONFIG_PROC_FS */

#ifdef CONFIG_SCHED_DEBUG
static inline int autogroup_path(struct task_group *tg, char *buf, int buflen)
{
int enabled = ACCESS_ONCE(sysctl_sched_autogroup_enabled);

if (!enabled || !tg->autogroup)
if (!task_group_is_autogroup(tg))
return 0;

return snprintf(buf, buflen, "%s-%ld", "/autogroup", tg->autogroup->id);
Expand Down

0 comments on commit 1a1914c

Please sign in to comment.