Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118024
b: refs/heads/master
c: 80a6a2c
h: refs/heads/master
v: v3
  • Loading branch information
Li Zefan authored and Linus Torvalds committed Oct 30, 2008
1 parent e02d66d commit 7726594
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 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: 7ccb97437bcc818d0ba6067513475f6ee8177a15
refs/heads/master: 80a6a2cf3bebcf20285cf05373b9c5ec96816577
16 changes: 7 additions & 9 deletions trunk/kernel/cgroup_freezer.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,13 @@ static int freezer_can_attach(struct cgroup_subsys *ss,
struct task_struct *task)
{
struct freezer *freezer;
int retval;

/* Anything frozen can't move or be moved to/from */
/*
* Anything frozen can't move or be moved to/from.
*
* Since orig_freezer->state == FROZEN means that @task has been
* frozen, so it's sufficient to check the latter condition.
*/

if (is_task_frozen_enough(task))
return -EBUSY;
Expand All @@ -173,13 +177,7 @@ static int freezer_can_attach(struct cgroup_subsys *ss,
if (freezer->state == CGROUP_FROZEN)
return -EBUSY;

retval = 0;
task_lock(task);
freezer = task_freezer(task);
if (freezer->state == CGROUP_FROZEN)
retval = -EBUSY;
task_unlock(task);
return retval;
return 0;
}

static void freezer_fork(struct cgroup_subsys *ss, struct task_struct *task)
Expand Down

0 comments on commit 7726594

Please sign in to comment.