Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 281477
b: refs/heads/master
c: 892a2b9
h: refs/heads/master
i:
  281475: 002295a
v: v3
  • Loading branch information
Mandeep Singh Baines authored and Tejun Heo committed Dec 22, 2011
1 parent 8386e19 commit c354fce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 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: b07ef7741122a83575499c11417e514877941e76
refs/heads/master: 892a2b90ba15cb7dbee40979f23fdb492913abf8
22 changes: 6 additions & 16 deletions trunk/kernel/cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,7 @@ static int css_set_prefetch(struct cgroup *cgrp, struct css_set *cg,
*/
int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
{
int retval, i, group_size, nr_migrating_tasks;
int retval, i, group_size;
struct cgroup_subsys *ss, *failed_ss = NULL;
/* guaranteed to be initialized later, but the compiler needs this */
struct css_set *oldcg;
Expand Down Expand Up @@ -2118,7 +2118,7 @@ int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
}

tsk = leader;
i = nr_migrating_tasks = 0;
i = 0;
do {
struct task_and_cgroup ent;

Expand All @@ -2134,11 +2134,12 @@ int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
*/
ent.task = tsk;
ent.cgrp = task_cgroup_from_root(tsk, root);
/* nothing to do if this task is already in the cgroup */
if (ent.cgrp == cgrp)
continue;
retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
BUG_ON(retval != 0);
i++;
if (ent.cgrp != cgrp)
nr_migrating_tasks++;
} while_each_thread(leader, tsk);
/* remember the number of threads in the array for later. */
group_size = i;
Expand All @@ -2148,7 +2149,7 @@ int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)

/* methods shouldn't be called if no task is actually migrating */
retval = 0;
if (!nr_migrating_tasks)
if (!group_size)
goto out_free_group_list;

/*
Expand All @@ -2171,14 +2172,6 @@ int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
INIT_LIST_HEAD(&newcg_list);
for (i = 0; i < group_size; i++) {
tc = flex_array_get(group, i);
/* nothing to do if this task is already in the cgroup */
if (tc->cgrp == cgrp)
continue;
/*
* get old css_set pointer. threadgroup is locked so this is
* safe against concurrent cgroup_exit() changing this to
* init_css_set.
*/
oldcg = tc->task->cgroups;

/* if we don't already have it in the list get a new one */
Expand All @@ -2194,9 +2187,6 @@ int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
*/
for (i = 0; i < group_size; i++) {
tc = flex_array_get(group, i);
/* leave current thread as it is if it's already there */
if (tc->cgrp == cgrp)
continue;
retval = cgroup_task_migrate(cgrp, tc->cgrp, tc->task, true);
BUG_ON(retval);
}
Expand Down

0 comments on commit c354fce

Please sign in to comment.